Advertisement
Zajkiss

Untitled

Jan 11th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     $('#industry').on('change', function () {
  3.         var selection = $(this).val();
  4.         console.log("Detected change..." + selection);
  5.         $("#1").toggle($(this).val() == "10");
  6.         $("#2").toggle($(this).val() == "10");
  7. }
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement