Skip to content

jQuery 1.4 Released

*DRUM ROLL*  jQuery 1.4 is released !!!

It has a lot of new features and enhancements like the examples below:

jQuery("<div>", {
    "class": "test",
    text: "Click me!",
    click: function(){
        $(this).toggleClass("test");
    }
}).appendTo("body");

jQuery("<input>", {
    type: "text",
    val: "Test",
    focusin: function() {
        $(this).addClass("active");
    },
    focusout: function() {
        $(this).removeClass("active");
    }
}).appendTo("form");

Post a Comment

Your email is never published nor shared. Required fields are marked *
*
*

@soderlind on Twitter:

Powered by Twitter Tools

Rodney's 404 Handler Plugin plugged in.