Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $('.ibox-action__icon_print').on('click', function() {
  2.  
  3.         $('body').addClass('print');
  4.         $(this).after('<span class="ibox-action__print-back">Вернуться назад</span>');
  5.  
  6.     });
  7.  
  8.     $(document).on('click', '.ibox-action__print-back', function() {
  9.  
  10.         $(this).remove()
  11.         $('body').removeClass('print');
  12.        
  13.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement