I want to load an external file into my file. the external file present another server and my file present in another server.
If i use this $("#content").load("content.html");
that is works fine the the both file in same server but my files are having different server
Example:
my file present in my local server
inside index.html there is div having div id "content"
and menu.html file present in http://phpraddyx.com/
$(document).ready(function(){
$("#content").load("menu.html");
});