|
Post by iPokemon on Sept 4, 2011 20:17:59 GMT -5
Code Name: Move PM Text Anywhere Tested in: IE, FF, Google Chrome, Opera Instructions: You need to put the div(the first code posted below) wherever you want the PM-text to be displayed. Whether it be in a table, or just by itself. Otherwise, just put the second script below the div, and you'll be good!
<div id="pm_text"></div>
<script type="text/javascript"><!-- /* Move PM Text Anywhere by iPokemon Feel free to edit and repost Just keep this header intact! http://bytemecodes.proboards.com/ */ var div = document.getElementById('pm_text'); var pm_text = document.getElementsByTagName('td').item(2); var clone = pm_text.cloneNode(true); div.innerHTML=clone.innerHTML; pm_text.style.display="none"; //--></script>
|
|