Created
November 28, 2012 18:22
-
-
Save acmisiti/4163033 to your computer and use it in GitHub Desktop.
the bug that wasted 1.5 hours ----- generic for all forms that submit and included in assets.yml --- should be setting page specific BRO
This file contains hidden or 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
$(document).ready(function(){ | |
$('input[type=submit]').on('click', function(e) { | |
e.preventDefault(); | |
$('.js-row-import').each(function(){ | |
var $t = $(this); | |
console.log($t.val()) | |
}); | |
}); | |
// | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment