Advertisement
dwhitzzz

Clean Selected Option

May 2nd, 2016
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".tendina-filtro option:selected").each(function() {
  2.      $(this).removeAttr("selected");
  3. });
  4. $(".tendina-filtro option:first").each(function(){
  5.     $(this).attr("selected","selected");
  6. });
  7.  
  8. <select class="tendina-filtro" id="rentCustomer" name="rentNameCust" required="">
  9.     <option data-identity="1">Mario </option>
  10.     <option data-identity="2">Massimo </option>
  11.     <option data-identity="3">Bianco </option>
  12.     <option data-identity="4">Max </option>
  13.     <option data-identity="5">Luigi </option>
  14.     <option data-identity="7">Marco </option>
  15.     <option data-identity="8">Verde </option>
  16. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement