|
Post by CFP wolf on Oct 2, 2009 15:20:39 GMT -5
This code removes the line that says "Joined:" from the miniprofile:
Code:<script> //Remove "Joined:" from miniprofile code. 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>
Place in the Global Footer. NOTE: This code does NOT work with Cali's Miniprofile in tables code.
|
|