Index » Programming Talk & More (Javascript, PHP, Perl, RSS, etc) » What is your favorite JavaScript (or AJAX) library.
#1 2008-03-14 10:40:24What is your favorite JavaScript (or AJAX) li...
This is an offshoot of the "What is your favorite site?" post. I saw the site for jquery and wanted to ask everyone who develops whats there favorite JavaScript Library. Jquery, script.aculo.us or what?
#2 2008-03-14 11:01:27 Re: What is your favorite JavaScript (or AJAX) li...
Northie
Moderator

From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2818
I've been thanked 81 times.
Offline

Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2818
I've been thanked 81 times.
Offline
jquery !
EDIT
ajax is this easy (and this is the most complicated it gets) in jquery
Code: javascript
$(function() {
$("a.myAjaxClass").click(function() {
$.ajax({
type:'GET',
data:querystring,
url:$(this).attr(href),
complete:function(a,b) {
if(b == 'success') {
//do something with a.responseXML;
} else {
//error
}
}
});
});
});
#3 2008-03-14 11:24:53 Re: What is your favorite JavaScript (or AJAX) li...
#4 2008-09-17 13:23:03 Re: What is your favorite JavaScript (or AJAX) li...
shrevesearch.com
Member

From: Shreveport LA, USA
Registered: 2008-09-16
Posts: 36
I've been thanked 1 times.
Offline
Member
From: Shreveport LA, USA
Registered: 2008-09-16
Posts: 36
I've been thanked 1 times.
Offline
I use the ATLAS entensions is Microsoft Ajax toolkit verision 2.0 for .net framework 3.5.
It has it's quirks, but all and all it's a well developed and integrated codebase.
It has seamless integration in the Visual Studio IDE, which I LOVE
| Never |
Index » Programming Talk & More (Javascript, PHP, Perl, RSS, etc) » What is your favorite JavaScript (or AJAX) library.
Active Discussions
Review Requests & Intros


