Скрин: http://s001.radikal.ru/i195/1006/20/8ea05f9c6af7.jpg Описание: Если вы на форуме зайдёте в какой либо раздел и на ведете возле названия темы на [?] у вас появляется таблица с сообщением который написал автор темы.
Установка: В общий вид страницы форума вставляем скрипт после $BODY$
Code
<script type="text/javascript">
/* Copyright AllCity ~ http://allcity.net.ru/ */
$('td.threadNametd a.threadLink').each(function(){
$(this).after(' [<b><a class="PostInfoA" href="javascript://" style="cursor: help;">?</a></b>] <div style="border: 1px solid #7b0176; position: absolute; background-color: #dddddd; padding: 10px; display: none;"><img src="http://s28.ucoz.net/img/ma/m/i2.gif" align="absmiddle" border="0" /> Загрузка...</div>');
$(this).next().next().load(this.href+' td.posttdMessage:first', function(){var DelTD = $('td.posttdMessage').html();$('td.posttdMessage').replaceWith(DelTD);});
$(this).next().mouseover(function(){
$(this).next().show();
});
$(this).next().mouseout(function(){
$(this).next().hide();
});
});
$('td.threadNametd a.threadPinnedLink').each(function(){
$(this).after(' [<b><a class="PostInfoA" href="javascript://" style="cursor: help;">?</a></b>] <div style="border: 1px solid #7b0176; position: absolute; background-color: #dddddd; padding: 10px; display: none;"><img src="http://s28.ucoz.net/img/ma/m/i2.gif" align="absmiddle" border="0" /> Загрузка...</div>');
$(this).next().next().load(this.href+' td.posttdMessage:first', function(){var DelTD = $('td.posttdMessage').html();$('td.posttdMessage').replaceWith(DelTD);});
$(this).next().mouseover(function(){
$(this).next().show();
});
$(this).next().mouseout(function(){
$(this).next().hide();
});
});
</script>