ŖЌǾ
Full Member
Posts: 227
|
Post by ŖЌǾ on Dec 5, 2007 11:47:38 GMT -5
This code will allow u to have your own specific msgs instead of Welcome back User.
Ex it could be: Welcome back OWnster, I own u guys and no one can own more...
Ok there are 2 types of codes!
They are the same BUT
One adds it to the top and the other adds info below hey.............
This code will add it under Hey....:
<script type = "text/javascript"> var msg='testing 1..2..3'; var tab = document.getElementsByTagName("td")[2]; tab.innerHTML += msg; </script>
This one will add it to the top:
<script type = "text/javascript"> var msg='testing 1..2..3'; var tab = document.getElementsByTagName("td")[2]; tabinfo = tab.innerHTML; tab.innerHTML = msg + tabinfo; </script>
Be sure to add this code in Global Header.
|
|