I am getting some strange output while manipulating the JQuery object, Let me explain in detail
The code is,
$.get(target, params, function(data){
var oldDom = $('#search-advanced form').clone(true, true);
var resForm = $(data).find('#search-advanced form').clone(true, true);
//This is where i'm getting the different console outputs,
//where they need to be same
console.log(resForm);
console.log($(data).find('#search-advanced form'));
//This prints the desired object,
//but there was no such object when i try to print `console.log(resForm);`
console.log(resForm.find('div[id*="query-section"]'));
var resFormLength = resForm.find('div[id*="query-section"]').length;
var oldDomLength = oldDom.find('div[id*="query-section"]').length;
//If i comment out this block, the results get differ,
//but, the console statements are executed before this.
if(resFormLength > oldDomLength){
resForm.find('div[id*="query-section"]').each(function(){
if(!oldDom.find(this).is(this)){
$('#search-advanced form #' + $(this).attr('id')).remove();
$('#search-advanced form #section-main').append($(this));
$('#search-advanced form #section-buttons').remove();
}
});
$('#search-advanced form').append(resForm.find('#section-buttons'));
}else if(resFormLength < oldDomLength){
}
});

What might be the reason for those different outputs?
$(data).find('#search-advanced form'). Do multiple elements have the sameidproperty? If so, that is probably why things are breaking for you. – Blender Aug 10 '12 at 5:10idis unique and shouldn't be repeatable within a page. Useclassas a selector. – A.K Aug 10 '12 at 5:12$(data)is not part of the DOM, isn't it? i know theidshould be unique. – code-jaff Aug 10 '12 at 5:18$(data)is because you defineddataoutside of the code that you posted here. – Blender Aug 10 '12 at 5:23datais the response from the server if theajaxcall is executed successfully. The first line clearly defines that. – code-jaff Aug 10 '12 at 5:28