href title did not display after using load function
Hi All,
When I move mouse over a href link in a single html page, like test1.html, IE 8/9 will display the href title
(can be used as a tip), after using jquery load function to load the html file into a div section into
another html file called tabs.html which has multi tabs, everything is good except all href's title do not display
when move mouse over href links, sample scripts as below.
--tabs.html
function loadContent(elementSelector, sourceUrl) {
$(""+elementSelector+"").load("
http://"+window.location.host+"/"+sourceUrl+"");
}
--test1.html
<a href="test1.html" target="_blank" title="Display as a tip"></a>
...
I have searched forum but could not find the answer, I using IE8/9 and
Thanks for help in advance!