Safari is consistently showing some weird behavior which is best demonstrated with a code example (in JavaScript):
var xml = "<whatever><status>success</status><title>interface update</title><details>just an example</details></whatever>"
var $jquery_xml = jQuery(xml);
var $jquery_xml.html();
The final line should return:
<status>success</status><title>interface update</title><details>just an example</details>
However, it actually returns:
<status>success</status><details>just an example</details>
The tag has been erased! Any ideas on why, and how I can get around this while still using jQuery?
<title>is a special tag that its use on the head section just a hunch :) – Val Feb 22 '11 at 20:59<titles>..</titles>it works on all of these browsers, including Safari. – Neil Feb 22 '11 at 21:26