Advertisement
bongzilla

Untitled

Mar 17th, 2022
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(e) {
  3. $(function () {
  4. $("#Type-of-alternative-asset-Common-drop-downs").change(function() {
  5. let val = $(this).val();
  6. let idx = $(this).prop("selectedIndex");
  7. const optionIndexes = [4];
  8.  
  9. if(optionIndexes.indexOf(idx) !== -1) {
  10. $("#hear-source").show();
  11. } else {
  12. $("#hear-source").hide();
  13. }
  14. });
  15. });
  16. });
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement