Given:
- Tom — who has a modern browser which is pushState-enabled
- Fred — who has a browser which is not pushState-enabled
- a
super.app
web application powered by Backbone
Tom browses to products/1
page where a #special-offer
section exists.
Does Backbone allow Tom to share a link with Fred including the anchor to the special-offer section: http://super.app/products/1#special-offer
Will Fred be redirected to http://super.app/#products/1 (eg: without the #special-offer
)?
In other words, does Backbone allow to use anchors?