Redirect url with anchor not working.
Author: natecorkishCreated Jul 28, 2021Updated Jul 28, 2021
Labelsquestion
I am using Laravel, and when I redirect after a form, I want to include an anchor which I can do like so:
return Redirect::to(URL::previous() . '#notes')
->withSuccess('Successfully created a note.');Which is: http://localhost/contact/1#notes
But turbo doesn't use. the anchor in the URL bar, it just uses the URL: http://localhost/contact/1
Is there anyway to allow turbo to update the address bar with the anchor of a redirect?

Source: turbolinks/turbolinks