Form submit (non ajax) only certain form fields?
Trying to find out if it is possible to submit a form (not ajax submit) and only submit certain form fields. I know it is possible with an ajax submit like:
- var post_data = $("SELECTION").serialize();
- $.ajax({
- type : 'POST',
- url : 'script/post.php',
- data : post_data,
- dataType : "text",
- success: successfunction
- });
Now is it possible with a regular form submit in jquery?