Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I would like to copy the user-selected option from one "select" to another "select". I want to do this because I cannot edit the first "select" but I need the information from it.

The first select has an Id of "product-select-option-1". This is the second select:

 <label for="Material">Material</label>
   <select id="Material" name="attributes[Material]" size="1">    
    <option value=" " selected="selected">Choose your Material</option>
    <option value="0">Cotton</option>
    <option value="1">Silk</option>
    <option value="2">Tafetta</option>
    <option value="3">Chiffon</option>
   </select>

Any help would be massively appreciated! Thank you!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
422 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...