View Single Post
Old 01-09-2013, 09:18 PM   PM User | #2
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,226
Thanks: 59
Thanked 3,996 Times in 3,965 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
If you use
Code:
<input id="mode" ...>
Then you need
Code:
document.getElementById('mode').value = "Manual";
On the other hand, if you use
Code:
<h1 id="mode" "></h1>
then you need
Code:
document.getElementById('mode').innerHTML = "Manual";
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.

Last edited by Old Pedant; 01-09-2013 at 09:21 PM..
Old Pedant is online now   Reply With Quote
Users who have thanked Old Pedant for this post:
JS Newbie (01-11-2013)