Jump to content

Option tag?


Devine

Recommended Posts

Ok so I want it to show text to seperate certain options.. this would be the drop down list:

 

OPTIONS 1
option 1
option 2
option 3
OPTIONS 2
option 1
option 2
OPTIONS 3
option 1
option 2
option 3

 

I want to make it so the capitalized "options" cannot be chosen in the select field.. I know its possible, any help?

Link to comment
https://forums.phpfreaks.com/topic/64615-option-tag/
Share on other sites

I'm using this and later when proceeding form check wheter is foo not empty.

It's because IE users are still able to select disabled option.

<select name="foo" onchange="if(this.value=='')this.value=1;">
<option value="1">Option 1
<option disabled value="" style="color: gray">Option 2
<option value="2">Option 3
</select>

Link to comment
https://forums.phpfreaks.com/topic/64615-option-tag/#findComment-322174
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.