August 4, 2010 · 1 min read
Yes it is possible and easy! You only have to use the (rare/unknown?) start attribute at your ordered list element (see example below). <ol start="4"> <li>list item 1</li> <li>list item...
July 6, 2010 · 1 min read
There are two, easy ways to achieve this. The first one is simply by using the array [] notation directly on the jQuery object: var myDiv = $("div")[0]; // myDiv is a...
June 9, 2010 · 2 min read
Creating a new DOM element in jQuery is super easy. Just add the element of your choice into the jQuery “wrapper” and you’re ready! Really simple. This works like a charm for...
June 5, 2010 · 3 min read
I just read the last page of the jQuery Cookbook (great book by the way), and I’d like to present 4 very convenient jQuery tips I used to ignore. Better late than...