my question is very simple how can I retrieve certain div with jquery ajax comand
$.ajax({ url: \"test.html\", success: function(){ $
If the div is part of the AJAX response:
$.ajax({ url: 'test.html', dataType: 'html', success: function(html) { var div = $('#sourceDiv', $(html)).addClass('done'); $('#targetDiv').html(div); } });