I need to call another page for example http://www.google.com
to my specific div. I had done using ajax...
$.ajax({
url : 'http://www.google.com',
success : function (data)
{
$('#my-div').html(data);
}
});
But it does not work....Is there any better ways instead of using <iframe>
?