If you're reading this, you probably are already familiar with loading your JavaScript asynchronously, to improve your web page load times. And, you have probably…
jQuery Datepicker doesn’t work on cloned elements
I tabled this issue for a while, trying not to spend too much time on it. But, it came back to haunt me in another…
JavaScript – IE 7 Error: Expected identifier, string or number
This is a common error when debugging JavaScript for the IE 7 and earlier IE browsers. Essentially, it appears that IE 7 is a little…
jQuery form submit method doesn’t work
This one is quirky. If you've checked your Error Console, examined your code to make sure the proper element is being used and have done…
Thickbox imageGroup is undefined
I'm not sure this is worthy of a post, but it's an issue that I couldn't find a solution to on the web, so may…
I love this WordPress plugin, all except this one little thing
How many times has this happened to you? You read the full plugin introduction on WordPress.org, look to the heavens and say "Thank You!". Only…
jQuery clone – Deep Copy requires Deeper Thought
We all know and love the jQuery clone() method and it's ability to create a deep copy of an object. But, in many cases, there's…
Star ratings the HTML valid, gracefully degrading way
We just released a new plugin, jquery.stars. If you are accepting product reviews on your site, this is perfect addition as it builds on your…
nicEdit tips – bbcode & xhtml
If you're looking for a lightweight, configurable rich text editor, nicEdit will do you proud. It's very easy to customize, relatively unobtrusive (compared to other…
Allowing tab within textarea
There are solutions out there on the subject. We borrowed the following jQuery code from another post: jQuery.fn.extend({ insertAtCaret: function(textToInsert){ return this.each(function(i) { …