Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $('#cu_livrare').on('click change', function(e) {
  2.  
  3. if( !e.target.checked ) {
  4. $('.shipping-row').slideUp( )
  5. $('.price-total').text(((parseFloat($('.price-quantity').text())).toFixed(2)))
  6. }
  7. else {
  8. $('.shipping-row').slideDown( )
  9. getPrice( )
  10. getDistance( )
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement