jQuery & unobstrusive javascript

Anyone know how to unobtrusively turn a normal link <a> into an ajax link using jQuery ?

$(‘a#myUniqueID’).click(function () { //Issue AJAX call and do something with it

return false; //By returning false, you prevent the browser from redirecting you to the href of the a tag });

Here are the docs for the AJAX stuff: http://docs.jquery.com/Ajax

Good luck!