Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <select class="products-dropdown" name="lease-product" id="sel-lease-product" onchange="hideDiv(this)">
  2. <option value="0"><?php _e('Select product', 'wp-woo-leasing'); ?></option>
  3.  
  4. <script type="text/javascript">
  5. function hideDiv(elem) {
  6. if(elem.value == 0)
  7. document.getElementById('product-description').style.display = "none";
  8. }
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement