How can I delay the update of the number of votes slightly? I would like the number to change half a second after the user clicks on vote rathar then that same instant.
if no answer, then where is that javascript? i've looked all over for it.


link_summary.tpl, around line 84 you'll see
<a href="javascript:{$link_shakebox_javascript_vote}" >{#PLIGG_Visual_Vote_For_It#}</a></li>
$link_shakebox_javascript_vote is pulled from /libs/link.php, around line 284
$jslink = "menealo($current_user->user_id, $this->id, $link_index, " . "'" . md5($current_user->user_id.$this->randkey) . "')";
$smarty->assign('link_shakebox_javascript_vote', $jslink);
the menealo javascript function it's calling is in the xmlhttp.js file in the js folder.