سلام.
من Script فوق رو تغییر دادم تا واقعا کاربردی بشه:
//Written by Mehdi Mousavi
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
function GM_wait() {
if (typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait, 100); }
else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
GM_wait();
function letsJQuery() {
$('#threadslist tr td:nth-child(3).alt1').each(function() {
var title = $(this).attr('title');
$(this).removeAttr('title').attr('alt', title);
}).hover(function() {
var title = $(this).attr('alt');
if (title && title.length) {
$('<div id="hot_title" />').html(title).css({'background-color': '#fff'}).insertAfter($(this).css('border', '1px solid #888').find('div:last'));
}
}, function() {
$(this).css('border', '');
$('#hot_title').remove();
});
}
موفق باشید.