Code: Select all
jQuery.ajax({
url: baseUrl,
processData: true, //also tried with false, made no difference that I could see
dataType: "html",
success: function(elemented){
document.getElementById('stuff').innerHTML = jQuery("div.stuffIWant", elemented); //doesn't work, this is where I need help
},
error: function() {
alert("fail");
},
});