Created
November 13, 2013 20:11
-
-
Save aaron/7455558 to your computer and use it in GitHub Desktop.
Document ready Rails 4 with turbolinks example
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
ready = function() { | |
$('a#toggle_all_standards_search_form').click(function() { | |
$('div#course_standards').html(''); | |
$('div#all_standards').show(); | |
return false; | |
}); | |
}; | |
$(document).ready(ready); | |
$(document).on('page:load', ready); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment