View Single Post
Old 02-13-2013, 06:47 PM   PM User | #2
Philip M
Supreme Master coder!

 
Philip M's Avatar
 
Join Date: Jun 2002
Location: London, England
Posts: 17,036
Thanks: 197
Thanked 2,411 Times in 2,389 Posts
Philip M has a spectacular aura aboutPhilip M has a spectacular aura aboutPhilip M has a spectacular aura about
Yes, simply set the option "Yes" to selected.

<option value="Y" selected>

Or another possibility

Code:
function toggleRows(select, rows) {
var si = select.selectedIndex;
if (si == 0) {si = 1}
var display = si == 1 ? '' : 'none';
Quizmaster: In Roman Catholicism, baptism, confirmation and matrimony are three of the seven what?
Contestant: Deadly sins.
__________________

All the code given in this post has been tested and is intended to address the question asked.
Unless stated otherwise it is not just a demonstration.
Philip M is offline   Reply With Quote