I want to submit a with using jquery as below;
$(\"#formid\").submit();
Its working perfect in all browsers except IE6.
How to mak
Just add a
window.setTimeout(function(){ $("#formid").submit(); }, 300);