Callback support and a version bump for jquery-simple-color
The jquery-simple-color plugin has received a bunch of callback-related goodness thanks to jbergen. He’s also added a live preview option which displays the currently-hovered-on color. ...
The jquery-simple-color plugin has received a bunch of callback-related goodness thanks to jbergen. He’s also added a live preview option which displays the currently-hovered-on color. ...
A couple of weeks ago someone commented on the SimpleColor plugin with a nice suggestion - adding the selected color as text inside the color selection button. I finally got around to implementing this last night, and added a couple of extra options to support this : ...
Unfortunately there is no .delay() function in jQuery. You can fake this, however, by using the .fadeTo() function: $("#my_element").fadeIn(1000).fadeTo(5000, 1).fadeOut(1000); ...
...
2013-03-28 Update : This plugin is now hosted on GitHub 2010-09-29 Update : This plugin has been moved from subversion to git, and now has a dedicated project page . Subversion updates will be discontinued, so please update your links to point to the latest version! ...
2013-03-28 Update : This plugin is now hosted on GitHub 2010-09-29 Update : This plugin has been moved from subversion to git, and now has a dedicated project page. Subversion updates will be discontinued, so please update your links to point to the latest version! ...
First, download and install the debugger from the IE Blog Next, you need to make sure that debugging is enabled in the IE options. Go to Tools->Internet Options->Advanced and make sure these options are de-selected : ...
After recently switching from prototype to the incredible jQuery, I had trouble finding an altermative for prototype’s Hash class. I ended up writing one based on MojaveLinux ’s Javascript Hash Table article. It implements the length, first, keys, invoke, each, remove, item, itemByIndex, set and hasKey functions. You’ll need some extra array functions to use this class. ...
A couple of useful array manipulation functions: clear, inArray and remove. Courtesy of Todd Ditchendorf ...