i am trying this example code to get info from another page, but unfortunatelly not work. Can someone help me? this is jquery code:
$.ajax({
url:href,
type:'GET',
success: function(data){
$('#content').html($(data).find('#content').html());
}
});