I would like to retrieve the URL (full path) of page2.html in the following setting:
page1.html
----------
<script type="text/javascript" src="js/jquery_1.6/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#content").load("page2.html");
}
</script>
<div id='content'>
<!-- this is where page2.html will be placed -->
</div>
----------
page2.html
----------
<script>alert(location.pathname)</script> //this should return the full path of page2.html, but now it returns page1.html
This is a line of content that will be loaded in page1.html
----------
My problem is that whenever I use url retrievers like document.URL, window.location or location.pathname it returns the full pathname of page1.html. This is probably because page2.html is loaded within page1.html, even though I do request the URL in page2.html.
Anyone has a solution for this or is this inevitable while using the .load() functionality?