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="this">
<option value="">Select one:</option>
<option value="1">1</option>
<option value="2">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?
Example)
<select name="this">
<option value="">Select one:</option>
<option value="1">1</option>
<option value="2">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?