dgileadi / zepto-page-transitions

HTML5 Page Transitions similar to JQuery Mobile page transitions, but standalone (13k) and using Zepto.js
167 stars 46 forks source link

chrome adding # before all href links #41

Open ghost opened 10 years ago

ghost commented 10 years ago

When used in chrome, linking to separate pages adds a # in-front of the address. The multi-page.html example shows this in inspector when linking from local page two to the actual page two as

a transition="slide" href="#multi-page2.html">Slide to load page three<

when it should be

a transition="slide" href="multi-page2.html">Slide to load page three<

as shown in firefox. The animation plays ok, but the actual content is not found as the url is then

zepto-page-transitions-master/example/multi-page.html#multi-page2.html

If you manually change the url of the hyperlink in chrome inspector, then you access the content, but no animation occurs.