I have an on.submit handler, which I assume is being passed the form to $(this), how do I access the form data?
OK, but now what?
I'm obviously missing something real simple, but I can't work it out.
Thanks,
1DMF
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music
Code:
$('#financial_promotion').on('submit',function(e) {
e.preventDefault();
showDialog('We are processing your financial promotion.','Please Wait!',[]);
sendFP($(this));
});
OK, but now what?
Code:
// Send FP form
function sendFP(frm)
{
frm.????
}
I'm obviously missing something real simple, but I can't work it out.
Thanks,
1DMF
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music