Hi,
I hope i am in the right forum :-)
Basically i am a web designer with no proper programming skills, and just need a quick help on the following problem. I reckon it's a 2-minute job for someone who knows what they're doing.
Basically i have a set of products and on each one i have dropdowns from a CMS system. It gives separate ids for each dropdown on each page which is a problem. What i need is to remove a select option right across the site, but with different ids on each page. The option always has the text as "Yes +$75.00".
<select title="" class=" required-entry product-custom-option" id="select_801" name="options[801]">
<option value="">-- Please Select --</option>
<option value="2398">No </option>
<option value="2399">Yes +$75.00</option>
</select>
I would like to return that to the following, regardless of the id, then i can add some text underneath to cover those who wanted it framed.
<select title="" class=" required-entry product-custom-option" id="select_801" name="options[801]">
<option value="">-- Please Select --</option>
<option value="2398">No </option>
</select>