Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.61 KB | None | 0 0
  1. (function ($) {
  2.     "use strict";
  3.  
  4.     jQuery(document).ready(function ($) {
  5.  
  6.         //Menu
  7.         $(".mobile_menu").click(function () {
  8.             $(".navigation").slideToggle(400);
  9.  
  10.         });
  11.        
  12.         //chackout option
  13.          jQuery('#select2-billing_persontype-container').attr('title').change(function () {
  14.        
  15.  
  16.              if ( jQuery('#select2-billing_persontype-container').attr('title') == 'Pessoa física' )  {
  17.               $('#billing_cnpj_field').css('display','none');
  18.                
  19.             } else {
  20.               $('#billing_cnpj_field').css('display','block');
  21.             }
  22.  
  23.           });
  24.        
  25.  
  26.  
  27.        
  28.  
  29.     });
  30.  
  31. }(jQuery));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement