Projects
Cody Lindley contacted me today to let me know about his views on jQuery – and a new jQuery demo page. If you’re looking for more examples of what jQuery code looks like, and some of the neat effects that it can do, you should definitely check it out. I’ve added a link to his […]
Comment ·
Posted: February 1st, 2006
I’ve been digging through my referrer logs and Technorati to see who’s talking about jQuery. Today I ran across someone who wrote a quick tutorial on how to use jQuery. The tutorial, itself, is rather new (e.g. nothing immediately borrowed from the docs) – so if you’re looking for some more sample code, in addition […]
Comment ·
Posted: January 29th, 2006
I ran across a post on the DOM Scripting blog, the other day, and saw a great opportunity to demo the brevity of jQuery, observe:
Old DOM Way:
function appendInputTypeClasses() {
if ( !document.getElementsByTagName ) return;
var inputs = document.getElementsByTagName(‘input’);
var inputLen = inputs.length;
for ( i=0; i < inputLen; i++ ) {
[...]
Comment ·
Posted: January 28th, 2006
Per the request of Mark (and many others) there is now an official jQuery mailing list. I did some simple testing to make sure that it worked properly, and it seems to be fairing well, so far. Let me know if you spot any bugs signing up or posting messages. Feel free to keep questions […]
Comment ·
Posted: January 27th, 2006
I’ve just finished writing up some more documentation, to help everyone who’s learning how to use jQuery. I’d like to thank Bruno for helping me sort out all the Prototype/jQuery weirdness and Derek for looking at the selector differences.
jQuery Base Module. I wrote up how exactly the $() function works and broke up the documentation […]
Comment ·
Posted: January 26th, 2006
Michael Geary contacted me today to let me know that he’s finished the first third-party jQuery plugin. His particular plugin loads in a remote JSON file, which can then be manipulated further. The chaining of this particular request doesn’t serve many benefits, but this is still something that I’m exploring further (maybe jQuery can support […]
Comment ·
Posted: January 25th, 2006
I’d like to take this opportunity to announce the jQuery blog. With jQuery having been announced just over a week ago, the response has been enormous. Making it to both del.icio.us popular and the front page of digg just shows how badly Javascript programmers want a better library for writing code with. I’m going to […]
Comment ·
Posted: January 24th, 2006
This script is capable of taking an RSS (or Atom) feed and converting it into a valid JSON object. I currently cache feed requests once per hour, to save on bandwidth – so keep that in mind when developing an application. You can use the interface that I have setup, below, or you can download […]
Comment ·
Posted: December 17th, 2005
Next entries » ·
« Previous entries