I've created an ajax sign up form using jquery to a PHP backend. My question is whether it's prudent to leave the form attribute action="", that is between blank quotation marks and let the ajax interface handle everything. Are there any pitfalls to this method if I'm not interested in users with javascript turned off?
$('#signUp').bind('click', function(event) { event.preventDefault(); ...form validation...
$.ajax({ type: 'POST', url: '../formToProcess/processor.php', data: enlistee, success: function() { });