I am having a problem calling ajax using jQuery. I send the information to the server and return the data as expected. The type of data I return is html. Using firebug, if I am a data console, it shows an object with all my tags. I want to manipulate the form of the returned data, but when I try to console.log the form, I get an empty object. What am I doing wrong? Here is my code:
$.post('add', {'ajax':true}, function(data){
var $data = $(data);
console.log($data.find('form'));
});
Steve source
share