I don't think this is valid jQuery code:
Code:
$ (Document). Ready (function (){$(" a "). EasyTooltip ()});
It should be:
Code:
$(document).ready(function(){$("a").easyTooltip();});
But that probably won't work if the document ready fires before crawler is done. Is your crawler in a table? If so are you using IE 7 or less to test? In that case crawler doesn't init until after document ready, it goes on window.onload.
Even in newer IE and other browsers, the exact timing may be off, probably as crawler has to wait for its images to load.
You could try:
Code:
$(window).load(function(){$("a").easyTooltip();});
And as long as the crawler isn't in a table, that might work for all. If it's in a table, there may or may not be problems in IE 7 and less. There could still be timing issues.
If you want more help, make the above suggested change to:
Code:
$(window).load(function(){$("a").easyTooltip();});
And:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks