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>