Want more GoRails?
GoRails is packed full with 717 lessons just like this one.
Sign up to get full access or log in to your account and sit back.
Your Teacher
Chris Oliver
Hi, I'm Chris. I'm the creator of GoRails, Hatchbox.io and Jumpstart. I spend my time creating tutorials and tools to help Ruby on Rails developers build apps better and faster.
About This Episode
Learn how to setup forms to work with Turbolinks iOS and Android adapters
Notes
Resources
Add this to your application as turbolinks-forms.js.coffee
and make sure it gets required in application.js
$.rails.ajax = (options) ->
op = $.ajax(options)
op.done (response) ->
unless response.substring(0, 10) == 'Turbolinks'
Turbolinks.clearCache()
document.documentElement.innerHTML = response
Turbolinks.dispatch("turbolinks:load")
window.scroll(0,0)