Question : color picker on website

i am using the following color picker for my website from this website
http://acko.net/dev/farbtastic

it works fine, but i would like to do the following.

instead of changing the color in the form field,
i would like to change a tables background color.

anyone know how to do this?

thanks

Answer : color picker on website

So to change the background on something use:
1:
2:
3:
4:
5:
$("#picker").farbtastic(function(color){
      $("table").css("background-color", color);
});

//Change "table" to match the selector of the element whose background you want to change.
Random Solutions  
 
programming4us programming4us