Advertisement
Guest User

slide in to disappear if visitor click on page

a guest
Jan 4th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1.  
  2. function add_custom_scripts(){ ?>
  3.     <script type="text/javascript">
  4.         jQuery(window).load(function(){
  5.             jQuery('#wdsi-slide_in').not(".wdsi-slide-wrap").click(function( event ){
  6.                 jQuery('.wdsi-slide-close a').trigger('click');
  7.             });
  8.         });
  9.     </script>
  10. <?php }
  11. add_action('wp_footer', 'add_custom_scripts');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement