Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <select tabindex="5" class="field select medium" name="tapeformat" id="tapeformat" selected="selected" size="1">
  2.                         <option selected="selected" value=""></option>
  3.                         <option value="HDCAM SR">HDCAM SR</option>
  4.                         <option value="HDCAM">HDCAM</option>
  5.                         <option value="DigiBeta">DigiBeta</option>
  6.                         <option value="BetaSP">BetaSP</option>
  7. </select>
  8.  
  9.  
  10. $('#tapeformat').change(function(){
  11.     x = $('#tapeformat').val();
  12.     alert(x);
  13.     $('#tapeformat').val(x);
  14.     $('#tapeformat').attr('size', 1);
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement