Soul-Divider
Veteran
Mr. Flibble got himself a Mammoth tank!
Posts: 501
|
Post by Soul-Divider on Jun 16, 2006 13:21:34 GMT
Pretty simple playing around with RegExp. Removes the line that says "Joined:" from the miniprofile. This code does NOT work with Cali's Miniprofile in tables code. So don't even try. If someone knows how to make this compatible, pm me Preview (Ignore the rest of the miniprofile mods in there )<script> //Remove "Joined:" from miniprofile created by Soul-Divider. var td = document.getElementsByTagName('td'); for(a=0; a<td.length; a++) { if(td.item(a).width == '20%' && td.item(a).innerHTML.match(/(Joined:\s(\w{3}\s\d{4})+<br>)/i)){ td.item(a).innerHTML = td.item(a).innerHTML.replace(RegExp.$1, ''); }} </script>
|
|