Created
February 29, 2016 22:56
-
-
Save aratak/632bb5261636ca327387 to your computer and use it in GitHub Desktop.
form autosubmit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=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