I have some basic HTML ie;
<select id="list1">
<option value="1">Item1</option>
<option value="2" selected="selected" >Item2</option>
</select>
<select id="list2">
<option value="3">Item3</option>
<option value="4">Item4</option>
</select>
By default I have the #list2 hidden and shown upon a change #List1 to option value 2 as such...
$('#list2').hide();
$('#list1').on('change', function () {
if ($(this).val() == '2') {
$('#list2').parent('div').hide();
} else {
$('#list2').parent('div').show();
}
});
What I am wondering, is how do I SHOW list 2 if the dynamically SELECTED value is "2" on page load. ie not after an event, but before one.
Thanks in advance for any help/advice. What I am wondering, is how can I
I used the following to get it to work. $('#list2').hide();