jquery - Load webpage content into a div on page load and hide URL? -


i'm calling page (test.html, test.php etc.) through below method:

test.html

<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>  <script>   $("#siteloader").html('<object data="test.html">'); </script>  <div id="siteloader"></div>​ 

inspector output:

<div id="siteloader"><object data="test.html"></object></div>&#8203; <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <script>     $("#siteloader").html('<object data="test.html">'); </script> 

google chrome, firebug (mozila) inspect output showing file name in source code. example, data="test.html"

how can hide file destination (address, url) source code viewers?

reason don't want find out test.html


Comments