Saturday, January 23, 2010

Basic jQuerying




So a few of my co-workers were wanting to know more about jQuery, so I thought I’d post an entry on the topic…a really basic intro to get people thinking and starting to use it.

There are a few things I love about jQuery and they are…

  1. You can query all your markup
  2. If it’s something with the client-side, there’s a plugin for it!
  3. It’s easy and fun to use

So let’s get started with the most common structure:

$(document).ready(function() {
$(
selectorhere).whateverfunction();

});

You may be wondering what the $ represents and the answer is…it’s a shortcut! jQuery(document) and $(document) are the same thing.


Okay so why do you call .ready all the time? Well one of the nice things about jQuery is that it knows when the DOM (Document Object Model) has loaded so between the brackets will run as soon as that happens. It works as a safety net basically.


The “selectorhere” represents what you want to query the DOM for basically. You can have all types of selectors, but I’ll list a few of the most common that I use.



  1. The class selector $(‘div.classname’)
    so this will search the DOM for anything marked up like this: <div class=”classname”></div>

  2. The id selector $(‘div#maincontent’)
    This will select the div with an id of maincontent like this: <div id=”maincontent”></div>

  3. The html tag selector $(‘a’)
    This will select all the anchors on the page like this: <a href=””></a> or <a name=””></a>

  4. The attribute contains selector $(‘a[href*=something]’)
    This will select all anchors with an href that contains the word something like this: <a href=”http://testsomething.com”></a>

Those are all the basic selectors I use, but you can read more about all the different types at jquery.com


Once you’ve selected what you want, you can do stuff to it/them. For example, say I wanted to add the jQuery datepicker to all textboxes with a class name of “date”. (Note: the jQuery datepicker is part of the jquery-ui library)


Alright so that jQuery code would look like this:

$(document).ready(function() {
$(
'input:text.date').datepicker();
});

So here I’m using the jQuery selector to say get me all inputs of type text with a class name of date. Just like the first little sample from above…really easy to use.


You can see more examples on these posts:



As always, thanks for reading!

kick it on DotNetKicks.com

blog comments powered by Disqus
Related Posts Plugin for WordPress, Blogger...