Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying out this code:

<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");
  });
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
</body>
</html>

I expect that when I click a p, the URL's path will change to bar.html. I am trying this file out from my desktop, so the URL looks something like file:///C:/Documents%20and%20Settings/Cupidvogel/Desktop/hist.html. However nothing happens when I click a p. What am I doing wrong here?

share|improve this question
Which browser? Any errors? – James McLaughlin Sep 21 '12 at 18:03
Firefox 5. Error as shown in Firebug console? – Cupidvogel Sep 21 '12 at 18:04
Hmm, I just tried this as a local file and it didn't work, but when I tried it on my local webserver it worked fine. I guess you can't use pushState in a local document. – James McLaughlin Sep 21 '12 at 18:12
Okay I will try it. In the meantime you can try it at w3schools.com/jquery/tryit.asp?filename=tryjquery_hide, it's not working. – Cupidvogel Sep 21 '12 at 19:00

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.