On desktop browsers alert returns tomaszgemski.com/test/url and on android browser we'll see tomaszgemski.com/test/index.html but url in adress bar will be changed correctly. Why? Is possible to get actually url on android?

online: http://tomaszgemski.com/test/index.html

js:

$(document).ready(function(){
    $('.link').click(function(){
        history.pushState({}, 'Title', 'url');
        alert(window.location.href)
        return false;
    });
});

html:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>test</title>
    </head>
    <body>
        <a class="link" href="#">Click me</a>
        <script src="js/jquery.min.js"></script>
        <script src="js/mobile.js"></script>
    </body>
</html>
link|improve this question

33% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.