Hello,
im a total noob with jquery i built a theme with html5 and css3 i wanted to add a colorpicker to change the background color of the theme something like this http://themes.cmsmasters.net/?theme=clockstone-html tho this theme has the whole shebang i just need that part to change background color of the theme can anyone please help me on how to call a function for something like this?
thanks alot, Ragzor
Hi Ragzor, please try http://blog.meta100.com/post/600571131/mcolorpicker 
markup :
<input type="color" value="#ffffff" id="bg-color-input" />
JS :
$('#bg-color-input').change(function(){
$('body').css('background-color', $(this).val());
});
Hope this helps 
THANKS ALOT !!! this looks easy will give it a try!!! 
Thanks alot
it worked
You’re welcome 
