Reputation: 3084
I've downloaded the Really Simple Color Picker in jQuery from this site
I've followed the instructions, an implemented the colorpicker like so:
The HTML
<input id="DashboardTreeHeaderFontColour" type="text" value="#333399"/>
The Javascript
$(document).ready(function () { $("#DashboardTreeHeaderFontColour").colorPicker() });
The small colour box is created, but clicking on it does nothing (it's suppoed to show the other colour options for you to choose from)
I'm using the latest Jquery.
Thanks for any help.
Regards, Byron Cobb
Upvotes: 1
Views: 216
Reputation: 344803
I set up an example using your exact code, importing the script and CSS files from the demo page. It works fine in IE, Firefox and Chrome. I would check the following:
Upvotes: 2