Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function hideShow(){
  2. if($("#order_shipping_address_region").val() == "12"){
  3. $("#shipping_options input[value='143029']").parent().siblings().hide();
  4. $("#shipping_options input[value='143029']").parent().show();
  5. $("#shipping_options input[value='143029']").click();
  6. }else{
  7. $("#shipping_options input[value='143029']").parent().siblings().show();
  8. $("#shipping_options input[value='143029']").parent().hide();
  9. $("#shipping_options input[value='144303']").click();
  10. }
  11. }
  12.  
  13. $('select').on('change',hideShow);
  14. $(document).ready(hideShow);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement