Using FF 1.06
I have the following code...
Code: Select all
<form name="myform" action="" method="post">
<select id="navigaiton_menu" name="navigation_type" onchange="this.form.submit();">
<option label="Booking Conditions" value="Booking Conditions" selected="selected">Booking Conditions</option>
<option label="Cancelation Policy" value="Cancelation Policy">Cancelation Policy</option>
<option label="FAQ" value="FAQ">FAQ</option>
<option label="BG Guide" value="BG Guide">BG Guide</option>
<option label="BG Intro" value="BG Intro">BG Intro</option>
<option label="Travel Tips" value="Travel Tips">Travel Tips</option>
<option label="About Us" value="About Us">About Us</option>
<option label="Terms and Conditions" value="Terms and Conditions">Terms and Conditions</option>
</select>
</form>So if I separate this code it works like a charm....when I integrate it in a file with other forms etc....it is not working.
I checked for duplicated names,ids but couldn't find one
I sometimes get this error on Javascript Console
Error: this.form.submit is not a function
I am a bit new to JS thats why I address the forum for help
Thanks in adavnce.