I want to do something similar, but this one looks happing for endless times.
$("form").live("submit", function() {
if($(this).attr('action') != "ajax"){
$(this).submit();
return true;
}
else { }
});
in Chrome and Firefox after a while, the form submits, something like 10 seconds and in IE crashes!
I know when I say form.submit means that I represent it and get the called function again and again, how can I avoid this?
user529649
source
share