Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $("#yourdropdownlistid option[value='thevalueofthetargetoption']").remove();
  2.  
  3. $("#yourdropdownlistid option[value='thevalueofthetargetoption']").each(function() {
  4. $(this).remove();
  5. });
  6.  
  7. <div id='container'>
  8. <button>add</button>
  9. <div class='row'>
  10. <select>
  11. <option>hi</option>
  12. <option>hello</option>
  13. <option>how</option>
  14. <option>are</option>
  15. <option>you</option>
  16. </select>
  17. </div>
  18. </div>
  19.  
  20. $('button').click(function () {
  21. var clone= $('.row').last().clone();
  22. clone.find('option:selected').remove();
  23. if($(clone).find('option').length>0)
  24. $('#container').append(clone);
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement