Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi can someone help me how to specify in the first example that i want processing only a certian DIV like i can do with the "load" method insteasd of "ajax" long version? thank you

// WITH EXTENDED VERSION, how to specify a div to be processed?
$.ajax({
  url: 'ajax/test.html',
  success: function(data) {
    $('#current-div').html(data);
    alert('Load was performed.');
  }
});

// WITH LOAD, it's ok|
$("a").click(function() {
  var myUrl = $(this).attr("href") + " #external-div";
  $("#current-div").load(myUrl);
  return false;
});
share|improve this question
2  
whats your problem? – Shawn Mclean Jan 23 '11 at 12:58

1 Answer

I think that what you're after is this?

$('#current-div').load('ajax/test.html');
alert('Load was performed.');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.