Advertisement
viciousojs

Testing

Feb 26th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  8.     <script type="text/javascript">
  9.     $(document).ready(function() {
  10.       $("#genre1").change(function() {
  11.         var str = $("#genre1 option:selected").val();
  12.         $("#genre2 option[value='"+str+"']").remove();
  13.         $("#genre3 option[value='"+str+"']").remove();
  14.       });
  15.     });
  16.     </script>
  17. </head>
  18. <body>
  19.     <label>Genre 1</label>
  20.     <select id="genre1">
  21.       <option value="Fighting">Fighting</option>
  22.       <option value="Shooter">Shooter</option>
  23.       <option value="Sport">Sport</option>
  24.     </select>
  25.     <label>Genre 2</label>
  26.     <select id="genre2">
  27.       <option value="Fighting">Fighting</option>
  28.       <option value="Shooter">Shooter</option>
  29.       <option value="Sport">Sport</option>
  30.     </select>
  31.     <label>Genre 3</label>
  32.     <select id="genre3">
  33.       <option value="Fighting">Fighting</option>
  34.       <option value="Shooter">Shooter</option>
  35.       <option value="Sport">Sport</option>
  36.     </select>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement