If you want to disable the behavior of the ajax link from the anchor tag, you can put rel=external in the link and the link will load without ajax, and then your URL will be normal.
http://jquerymobile.com/demos/1.0a4.1/#docs/pages/docs-navmodel.html
<a href="User/somepage" rel="external" />I wont be using ajax for navigation</a>
If you want to do this in jQuery for some tags inside div content, you can try like this:
$(function(){ $(".content a").each(function(){ $(this).attr("rel","external"); }); });
Here is an example http://jsfiddle.net/4WEBk/3/
More simplified version. (Thanks to tandu for pointing)
$(function(){ $(".content a").attr("rel","external"); });
Shyju
source share