Blog
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
As I mentioned previously, I attended BarCampNYC this weekend and had a great time. I did two full presentations – both of which were quite successful. Presentation 1: Hot Demo Session (11am, Sunday) I started out with a quick overview of my company, Juniper Bay, what I do (programming, entrepreneur) and where I’m looking to […]
Comment ·
Posted: January 16th, 2006
This weekend I’m going to be attending Bar Camp NYC with Bob and Jordan. I’m really looking forward to meeting a lot of new faces. I’m currently planning two presentations (one on an unreleased Javascript libraray I’ve written and one on a brand new idea that I have) – but I’ll be happy to give […]
Comment ·
Posted: January 9th, 2006
Next entries » ·
« Previous entries