[jQuery] How to prevent a particular field being submitted in form submission
I have email, password and some other fields, and I'm using $.post to send data for Ajax submission. $("#MyForm").submit(function(){ $.post('/register.php', $(this).serializeArray(), callback, "json" ); return false; }); Th
[jQuery] How to prevent a particular field being submitted in form submission
I have email, password and some other fields, and I'm using $.post to send data. $("#MyForm").submit(function(){ $.post('/register.php', $(this).serializeArray(), callback, "json" ); return false; }); In Ajax form submissi