Skip to content

Instantly share code, notes, and snippets.

@acmisiti
Created November 28, 2012 18:22
Show Gist options
  • Save acmisiti/4163033 to your computer and use it in GitHub Desktop.
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
$(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