Hello, I have a question (surprisingly ;) ):
How can I return false to a link without breaking the function? I did this previously without jQuery, back then I set an animation to execute after an interval and returned false. This time I need the function to continue running.
function initNavLinks(){
navLinks = $("div#header a").click(function(){
return false;
processSlideReq();
})
}
Thanx in advance