|
Post by iPokemon on Sept 4, 2011 20:05:28 GMT -5
Code Name: Move Location Text Anywhere Tested in: IE, FF, Opera, Google Chrome Instructions: The div(the first code listed below) needs to be wherever you want the location text to be found. Be that, in a table or just by itself. The second script, listed below, just has to be below the div. Other than that, no editing is needed!
<div id="loc_text"></div>
<script type="text/javascript"><!-- /* Move Location Text Anywhere by iPokemon Feel free to edit and repost Just keep this header intact! http://bytemecodes.proboards.com/ */ var div4text = document.getElementById('loc_text'); var loc_text = document.getElementsByTagName('font').item(1); var clone_loc = loc_text.cloneNode(true); div4text.innerHTML=clone_loc.innerHTML; loc_text.style.display="none"; //--></script>
|
|