Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <script type='text/javascript'>
  2.         $( document ).ready(function() {
  3.             $('.column2_body, .column3_body').click(function(){
  4.                 var url = $(this).parent().find('a').attr('href');
  5.                 window.location.replace(url);
  6.             });
  7.  
  8.             $('.header_container').click(function(){
  9.                 var url = $(this).find('a').attr('href');
  10.                 window.location.replace(url);
  11.             });
  12.         });
  13.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement