Title Tooltip Is Not Shown When Span Is Child Of Anchor
For example, consider the following DOM structure. 
document.getElementById("element's id").offsetHeight// will return 0
This is a bug in IE and workaround would be to do something like following:
a[title]span {
display: inline-block;
}
Post a Comment for "Title Tooltip Is Not Shown When Span Is Child Of Anchor"