how can i controls #! in url suppose i have the following url

http://www.facebook.com/#!/video/video.php?v=1106030301789

now how facebook controls that #! in url....

link|improve this question

should be tagged: "location.hash" – meleyal Sep 17 '10 at 13:09
@meleyal That tag does not exist. I file this topic under [fragment-identifier], since the only other option, [hash], is hopelessly overloaded. – Josh Lee Sep 17 '10 at 13:38
i tried to add the tag, but don't have enough rep :( – meleyal Sep 17 '10 at 21:05
Duplicate of stackoverflow.com/questions/tagged/browser-state – balupton Sep 18 '10 at 11:35
possible duplicate of What's the shebang (#!) in Facebook URLs for? – Josh Lee Oct 7 '10 at 7:05
feedback

3 Answers

up vote 3 down vote accepted

http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html - this might explain a little about it :-)

link|improve this answer
feedback

Take a look at sammy.js

$.sammy(function() {

  this.get('#/', function() {
    $('#main').text('Welcome!');
  });

});

Or route.js

route('#/Learn').bind(function(){ 
    Alert('Alert1'); 
}); 

There's also a standards way to do it with the new popstate event in html5

link|improve this answer
feedback

The short answer is: via Ajax

Ajax allows main page to dynamically load content without need to refresh page

link|improve this answer
If the URL in the address bar is changing, it's not Ajax. – Rushyo Sep 17 '10 at 13:11
The URL is changed in the normal way, with links changing the anchor/hash. An event listener sees the change and calls the ajax. – meleyal Sep 17 '10 at 13:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.