Please take a look at the following code:
In the first link there is a title attribute containing the html special character < followed by "!" (it doesn't matter which character it is followed by actually).
When we take the value of that title attribute with jQuery's attr() function the html is broken (you can see that there is no "<" character printed as long as the following text is also missing.
In the second link the only difference is that I have added a space after < and now it works as expected.
Do you think it's a bug in jQuery or I just don't understand something?
PS. If you think I'm doing something strange - it's just some piece of code from some tooltip plugin.
HTML:
<a href="#" title="<div style='color:red'>This is the less than sign: <! Now you know it?</div>">This is a link</a><br>
<a href="#" title="<div style='color:red'>This is the less than sign: < ! Now you know it?</div>">This is a link</a><br>
jQuery:
$('a').each(function() {
$('body').append($(this).attr('title')); });
// just to exclude that it's append() function's fault :)
$('body').append("<div style='color:red'>This is the less than sign: <! Now you know it?</div>");