All pastes #2065103 Raw Edit

Something

public text v1 · immutable
#2065103 ·published 2011-05-20 00:07 UTC
rendered paste body
$.ajax({
        url: content + ".htm",
        async: true,
	dataType: "html"
    }).success(function(htmlDoc){
//in here
var body = $("body", htmlDoc) //doesnt work

}

//htmlDoc content

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>my title</title>
        <link rel="stylesheet" type="text/css" href="themes/default.css" />
        <link rel="stylesheet" href="ui.slider.css" type="text/css" />
    </head>
    <body>
        aaa
    </body>
</html>