Here is a problem I met using a PHP script to grab an HTML page and return the HTML content as a string to jQuery's AJAX call.
$.ajax({
type: "POST",
data: "url="+tar_url,
url: "curl.php",
success: function (data, textStatus, jqXHR){
$("meta", $(data))// not working
$(data).find("meta") //not working
$("img",$(data)) //works
$(data).find("div") //works
},
Inside the success function callback, I noticed that I could use normal selectors to get div, img, ul, etc. However, none of the above methods could select meta tags.
First, I don't know if the HTML contains any meta tags. If it contains some, I would like to select them out and parse them, etc. Is it impossible to select those meta tags with jQuery?