Skip to content

Instantly share code, notes, and snippets.

@aratak
Created February 29, 2016 22:56
Show Gist options
  • Save aratak/632bb5261636ca327387 to your computer and use it in GitHub Desktop.
Save aratak/632bb5261636ca327387 to your computer and use it in GitHub Desktop.
form autosubmit
#=require jquery
$(document).on 'change blur', "form[data-autosubmit] :input, .autosubmit:input, form[data-autosubmit] textarea", ()->
if $(@).parents('form [type=submit]').count > 0
$(@).parents('form [type=submit]').click()
else
$(@).parents('form').trigger('submit')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment