Advertisement
triggerred

js

Feb 5th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".selectan").on("change", function(){ // Saat .selectan diubah valuenya
  2.     if($(this).val() == 1){ // Jika .selectan memiliki nilai 1
  3.         $("#select").show(); // select dihide
  4.         $("#text").hide(); // text dishow
  5.     }else{ // Jika sebaliknya
  6.         $("#select").hide(); // select dishow
  7.         $("#text").show(); // text dihide
  8.     }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement