[jQuery] How to trigger ajaxed link before the regular <a href>?
Hi, I just started learning javascript and jQuery.
I have trouble calling ajaxed link before the usual html stuff for the
javascript-disabled browsers.
The jQuery code:
$(".about a").click(function() {
$(".jq").hide().slideDown("slow").load("about.htm");
});
HTML:
<li class="about"><a href="about.htm">about</a></li>
I tried with some "onclick" event, but didn't work - html link is
always started before ajax/jquery.
Thanks!