Blog » Announcing the jQuery Blog
Posted January 24th, 2006 by John ResigI’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.
January 25th, 2006 at 7:22 am
Thanks, good job!
Regards
Roger
January 25th, 2006 at 11:57 am
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
January 25th, 2006 at 1:13 pm
Mark: I’m currently working on an AJAX module, that I will be releasing soon. In the meantime, you could use any popular AJAX library, for example, with Prototype:
function handle(xml) { $(xml).find("title").each(function(){ $("#test").append("<li>"+this.innerHTML+"</li>"); }); } new Ajax.Request('/test.xml', {onSuccess:handle});I hope this can get you started, however there’s definitely some very sexy code coming soon - so you should keep your eyes peeled for that.
January 27th, 2006 at 5:25 am
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).
January 27th, 2006 at 11:46 am
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.
February 1st, 2006 at 8:17 am
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.
February 28th, 2006 at 5:36 am
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!
February 21st, 2007 at 3:34 am
[…] JQuery es una de las librerías javascript que más rápidamente se ha estado extendiendo en el último año. John Resig empezaba a postear el el blog del proyecto a finales de enero del 2006, y desde entonces no ha hecho más que cosechar buenas críticas y conseguir apoyos. […]
June 20th, 2007 at 8:11 pm
Hello! Good Site! Thanks you! yecicfrubojo
September 29th, 2007 at 3:24 am
i like it !
September 29th, 2007 at 3:26 am
it is good libaray !
April 27th, 2008 at 3:01 am
[…] January 27th, 2006 jQuery Mailing List set up: jQuery Mailing List January 25th, 2006 First jQuery Plugin Built: First jQuery Plugin January 24th, 2006 jQuery Blog set up: jQuery Blog … The announcement of jQuery makes it to the front page of del.icio.us and Digg … January 14th, 2006 jQuery Announced at BarCampNYC: BarCampNYC Wrap-up [edit] 2005 […]