Is this a good way to let the user know that a slow-loading page is coming?

    $("#menu a").click(function(e){
        $.blockUI({ message: "<h1>Loading...</h1>" });
        location.href = e.target;
    })

I'm not very familiar with jquery, but as far as I can tell, the 
.click() function isn't a pass-through... it seems to stop the click in 
its tracks. Is this so?

Peter





__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to