Created
August 22, 2014 08:42
-
-
Save aratak/58a6c5ecc8be50bb5af0 to your computer and use it in GitHub Desktop.
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', "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') | |
$(document).on 'blur', "form[data-autosubmit] textarea, form[data-autosubmit] :input", ()-> | |
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