I had the same problem just now, and I came across this message when searching for a solution. In the end, filter( ) worked for me instead of find( ) .
From the Chrome Javascript console:
$.ajax({ type: 'GET', url: $getThisURL, success: function(data) { output = $(data).filter('meta'); } });
Output:
[<meta http-equiv=β"Content-Type" content=β"text/βhtml;βcharset=utf-8">β, <meta name=β"color:βBackground" content=β"#262626">β, <meta name=β"color:βText" content=β"#fff">β, <meta name=β"color:βLinks" content=β"#ffbc00">β, <meta name=β"if:βShow notes" content=β"1">β, <meta name=β"robots" content=β"noindex">β, <meta charset=β"utf-8">β, <meta http-equiv=β"x-dns-prefetch-control" content=β"off">β]
source share