Hail,

This is not a question or something like that :P... just wanna show some
lines of code that i usually use to disable forms "auto" submit... where you
can see that kind of reloading.

I usually use:

// onload, shortcut to $(document).ready(function() {});
$(function() {

    // disable form submition on all forms
    $('form').submit(function() { return false; });


});


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to