Reputation: 2169
I have an asp.net page which displays different colors..It looks something like this.
Now what i want is,when i click on any where in that form,i want to get the pixel color of that particular point. How can i do that??
Upvotes: 0
Views: 427
Reputation: 7646
I'd use jquery and put a click event on each of the area's. I'd put the colour into the id of each of the areas, something like id="colour-#d9d9d9".
Upvotes: 3