Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <select name="type" onchange="nones();return false;" id="type" class="inp_s" style="width: 100%;font-size: 18px;">
  2. <option value="Advertise">Advertise</option>
  3. <option value="Link">Link</option>
  4. </select>
  5.  
  6. <input type="number" name="impr" min="0" value="0" placeholder="Impressions" id="impressions" class="inp_s">
  7.  
  8. <script>
  9. function nones() {
  10. if (document.getElementById("type") == "Link") {
  11. document.getElementById("impressions").style.display = "none";
  12. }
  13. }
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement