Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.40 KB | None | 0 0
  1. <select id="Select1" name="Select1">
  2. <option>---</option>
  3. <option value="1">1</option>
  4. <option value="2">2</option>
  5. </select>
  6.  
  7.  
  8.     <script type='text/javascript'>
  9.         $(function () {
  10.             $('select').change(function () {
  11.                 if ($('select').length == $('select option:selected').length)
  12.                     alert('x');
  13.             }
  14.             );
  15.         });
  16.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement