This is not for SEO at all.
I have:
Code:
<input type="hidden" id="first_name" value='Stephen' />
And want to be able to print that value lower on the page.
Can I do:
Code:
document.write(document.getElementById("first_name").innerHTML);
or
Code:
document.getElementById("first_name").innerHTML = the_first_name;
document.write (the_first_name);
And thanks for the help!!
__________________
Thanks
Stephen
Last edited by sepple; 02-02-2009 at 12:58 PM..
|