loads of useful information, examples and tutorials pertaining to web development utilizing asp.net, c#, vb, css, xhtml, javascript, sql, xml, ajax and everything else...

 



Advertise Here
C-Sharpener.com - Programming is Easy!  Learn Asp.Net & C# in just days, Guaranteed!

Amazing jQuery Color Picker

by naspinski 9/17/2008 10:28:00 AM

This is by far the smoothest, most compact color picker I have found

 

Looking for a new color picker today, and I cam across this beauty!  The 'Farbtastic' color picker... what a name!  It requires jQuery, but is easily the best of it's kind I have ever found.  It is extremely easy to implement and looks/works great (I really like the fact that it is mroe compact than most). 

 

I just finished making a style customizer for one of our intranet applications that uses this to re-write our css and hence change the theme based on the user input.  This tool was super easy to work with and cut my development time down by a huge margin.  I can't say enough about this plugin!  Hopefully I can get a post up about the online css customizer pretty soon.

 

DOWNLOAD: http://acko.net/dev/farbtastic

Currently rated 2.3 by 3 people

  • Currently 2.333333/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

links | jquery

Related posts

Comments

5/20/2009 1:29:38 PM

Harikrishnan
I integared this in a usercontrol(ascx) ..But its not working...
Anyone any idea about this

Harikrishnan in

5/20/2009 1:35:03 PM

naspinski
The most likely thing is that the references to the javascript files are incorrect where you are implementing them. Since User Controls can be stuck in anywhere, I recommend making all your JS references in the code-behind so they can adapt to wherever you are calling the control.

naspinski us

5/20/2009 1:42:00 PM

Harikrishnan
Thanks for your valuable reply
How can we refer the these scripts reference to the code-behind
pls help

Harikrishnan in

5/20/2009 2:05:38 PM

naspinski
Use the Page.ClientScript.RegisterClientScriptInclude method: msdn.microsoft.com/.../...clientscriptinclude.aspx

naspinski us

5/21/2009 8:51:00 AM

Harikrishnan.S
Hello

In the above applicaion,Here selected color code is displying the textbox(input type) and that textbox having no porperty of "runat=server"..But i added the textbox property runat=serevr.But displaying an error..
How can we avoid this thing

Harikrishnan.S

Harikrishnan.S in

5/21/2009 9:02:57 AM

naspinski
A couple ways around that. Since you are adding runat="server" it is now renaming your <input> previously named 'myTextbox' to something else like ctl$100myTextBox', so you can either push in some inline asp.net to enter the clientID <%= myTextBox.ClientID %> or use a jQuery selector that will grab the right one by using special selectors: $("input[id$='myTextBox']")

naspinski us

5/21/2009 10:30:17 AM

Harikrishnan
Hai,

Its working fine..
Thanks lot.

Our client Reqirement is avoid the round image and that will be squre image..and the inner image should be out side in the main image.You Got? how cna we customize the image as square?

Thanking You

Harikrishnan.S

Harikrishnan in


Comments are closed