Announcing the jQuery Blog

Posted on by

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 be using this blog to detail the changes that’ve been made to the code, announcing new features, and giving plenty of real-world example. I already have a lot lined up – and I’m looking forward to pushing this forward! As always, if you have any questions concerning jQuery, please feel free to email me.

11 thoughts on “Announcing the jQuery Blog

  1. Hi there, this looks excellent and very well thought out. How would you best reccommend combing this with some kind of AJAX functionality? Would you combine it with Prototype? I’v been fiddlying with DOJO and I’d love to see Jquery work inside that or a simple way with Jquery to call other pages. The only thing DOJO misses eally is the way that you can select tags simply.

    thanks a lot for your efforts

  2. Cool thanks for that,althouh I’m finding at the moment just a simple AHAH type request is good enough for now.

    One more question (you can tell JS is not my thing right?),

    I’m returning an id –
    $(“#feedtags”).keyup(function(){
    var feedtagsN = $(“#feedtags”)
    alert(feedtagsN.value);
    })

    And I want to display the contents/value of this (input), am I missing something? I know I am…

    thanks again

    btw – for non uber-coders your library rocks, from a marketing point of you maybe this is a good postion for you (marketing is my thing).

  3. Mark: Currently, to acheive what you want – you’ll have to retreive the first element matched by jQuery, like so:

    $(”#feedtags”).keyup(function(){
      var feedtagsN = $(”#feedtags”).get(0);
      alert(feedtagsN.value);
    });

    Unfortunately, I really feel that this is too verbose – I’m going to be releasing some new methods, soon, which will shorten the above to:

    $(”#feedtags”).keyup(function(){
      alert($(”#feedtags”).value());
    });

    Which seems a lot more sane (if you ask me). I’ll be sure to contact you when this code is ready to be used.

  4. Thank you for the blog and mailing list. I joined both.

    I updated my website page on javascript news/links/trends to point to your mail list and blog. Congrats.

    As for using the library specifically, I will make use of the mail list for my questions.

  5. Hi!

    First of all, congratulations for this impressive library, i’m just planning to implement it at some projects i’m involved.

    I have a couple of questions about it:

    1- How can i access the content of an element returned by $() function? For instance, i want to know, using AJAX plugin, if a request was ok or not:

    $(‘#upload_results’).load(“ajax_process.php?param=value”);
    if ( “OK” == $(‘#upload_results’).innerHTML )
    {
    alert ( “Done” );
    {
    else
    {
    alert ( “In process” );
    }

    (this doesn’t work)

    2- In the same way… how can I access values in XML DOM in a XMLHttpRequest response? I tried the example in this discussion from John Resig, but it doesn’t work. Any live example?

    Thank you very much!

  6. Pingback: JQuery sigue avanzando - Blog de obokaman

  7. Pingback: jQuery Version and Plugin Usage Report | BuiltWith Blog