I am loading pages via ajax and need to grab a certain class from the parsed html. The method I'm using doesn't seem to work and only returns 'undefined'.
$.ajax({
type:'post',
url:"path/to/page",
success:function(r){
r = $(r);//parse html
var page = r.find('#siteWrap').attr('class');//pull off class name
alert(page);//returns "undefined"
}
});
Love some help guys!