Skip to content

Instantly share code, notes, and snippets.

@aaron
Created November 13, 2013 20:11
Show Gist options
  • Save aaron/7455558 to your computer and use it in GitHub Desktop.
Save aaron/7455558 to your computer and use it in GitHub Desktop.
Document ready Rails 4 with turbolinks example
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