How can I submit a form when a field (In this case the form only has one field) loses focus?
I tried this, but it\'s not working:
$(\"form\").submit(
$('form :input').blur(function() { $(this).closest('form').submit(); });