Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script>
  2. (function($) {
  3. var bouncedContent = $('.ud-content.bounce_out');
  4. if ( bouncedContent.length ) {
  5. bouncedContent.on( 'mouseenter', function() {
  6. $(this).closest('.et_pb_column').css('z-index', '99');
  7. });
  8. bouncedContent.on( 'mouseleave', function() {
  9. $(this).closest('.et_pb_column').css('z-index', '9');
  10. });
  11. }
  12. })(jQuery)
  13. </script>
Add Comment
Please, Sign In to add comment