Code (for LOTRO, use the code further down)
<style type="text/css"> .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2 { width: 250px; } #tooltip, #tooltip2, #preview { color:#dddddd; background:#222222; border: 1px solid #333333; padding:5px; display:none; opacity: 0.9; filter: alpha(opacity=90); text-align:left; } </style> <script src="http://www.axiomfiles.com/Files/258012/tooltip.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready( function(){ var medaltooltipwidth = 150; var medaltooltipBackground = "#000000"; var medaltooltipColor = "#ffffff"; // Don't change anything below // *************************** $("div[id*='_pnlStandardRoster']").find(".NormGridRow,.AltGridRow").find("img").each(function(){ var tmp1 = '<center><img src=' + $(this).attr('src') + '><br>' + $(this).attr('title') + ' ' + ($(this).attr('alt') || '') + '</center>'; var tmp2 = medaltooltipwidth + "," + medaltooltipBackground + ";color:" + medaltooltipColor + ";"; $(this).attr({'title':tmp1,'rel':tmp2}).addClass('tooltip'); }) }) </script>
<style type="text/css"> .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2 { width: 250px; } #tooltip, #tooltip2, #preview { color:#dddddd; background:#222222; border: 1px solid #333333; padding:5px; display:none; opacity: 0.9; filter: alpha(opacity=90); text-align:left; } </style> <script src="http://www.axiomfiles.com/Files/258012/tooltip.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready( function(){ var medaltooltipwidth = 150; var medaltooltipBackground = "#000000"; var medaltooltipColor = "#ffffff"; // Don't change anything below // *************************** $("#tblLotroRoster").find(".loNam").find("img").each(function(){ var tmp1 = '<center><img src=' + $(this).attr('src') + '><br>' + $(this).attr('title') + ' ' + ($(this).attr('alt') || '') + '</center>'; var tmp2 = medaltooltipwidth + "," + medaltooltipBackground + ";color:" + medaltooltipColor + ";"; $(this).attr({'title':tmp1,'rel':tmp2}).addClass('tooltip'); }) }) </script>