With turbolinks, the traditional approach to using:
$(document).ready(function() {
// awesome code
});
won't work. While using turbolinks, the $(document).ready() event will only fire once: on the initial page load. From that point on, whenever a user clicks a link on your website, turbolink...