I am giving a user a choice of colour What happens is there is a text box and next to it i wanna place a colour palette where they can select from a whole range of colours. I am not sure of the best of doing this, please could someone advise and suggest any good code / tutorials thanks
My head is elsewhere today so I don't fully understand what you want, but you can create a page with colors for your client to choose from: http://javascript.internet.com/image-effects/color-chart-script-changer.html http://javascript.internet.com/page-details/color-chart.html There also products intended for the same: http://www.visibone.com/color
I want a text box on a page and a select button This select button opens a dhtml window which shows the photoshop like color picker which people can the choose any colour when they click this then inputs the result into the textfield.. any clearer?
This is a beauty. I haven't tried to implement it myself but I'm sure I'll use it soon. http://colourmod.com/ The demo is a little difficult to find - it's at the top of the right column.
That is awesome.. But I need to be able to edit the code and use it within my CMS.. I gather from thier site you have to pay for the code and then you cant edit it.... If anyone has seen any shareware free files/examples like this please let me know as this link is sooo good looking and swish Thanks
I knew I'd used something similar in the past - here it is. http://javascript.weblogsinc.com/2006/07/16/smooth-color-picker-using-javascript/
here is a cute one http://colourmod.com/konfabulator/ click on the right GREEN and you'll see also lately I downloaded tigra color picker http://www.softcomplex.com/products/tigra_color_picker/ hope helped you
You're welcome, its a great one, I found it a few days ago for my friend. I was looking for the same thing that is red_fiesta doing
Thanks... What i need to know now is .. if i have this javascript code "&colorOld="+document.getElementById(color1).value; this will bring in the value of color1 I need to check that color1 doesnt have # at the beginning and if it does remove it.. any ideas. Cheers Here is the full code function show_picker(ID, Current_Color, Previous_Color){ which_input = ID; var lnk = "colorpicker/select_color.asp?textName="+document.getElementById(which_input).id+"&colorOld="+document.getElementById(which_input).value; window.open(lnk, "", "width=300, height=300"); }