Is it possible to intercept a form\'s POST string and send it via AJAX instead? I could use $(\'form\').submit() to intercept the POST event, but I don\'t see where I can ge
use .serialize(), it will ncode a set of form elements as a string for submission.
$('form').serialize()