Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PARSING HTML

Status
Not open for further replies.

vfly84

Programmer
Joined
Oct 17, 2002
Messages
1
Location
US
I have a select drop down, one of the option values is "". but, when i save and then open the file back up, interdev does me the delightful favor of "cleaning up" my code and removing the ="". gosh, thanks interdev! does anyone know how i can prevent this from happening?

Example)
<select name=&quot;this&quot;>
<option value=&quot;&quot;>Select one:</option>
<option value=&quot;1&quot;>1</option>
<option value=&quot;2&quot;>2</option>
</select>

when i save and open, it turns the first option into this:

<option value>Select one:</option>

which happens to be very different... any ideas?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top