Advertisement
Guest User

Copy Links

a guest
Aug 30th, 2011
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <!-- include JQuery -->
  4.     <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.6.2.min.js"></script>
  5.     <title>Add Parameters</title>
  6. </head>
  7. <body>
  8.     <script type="text/javascript">
  9.         $(document).ready( function ()
  10.         {
  11.             $('a').each(function f() {
  12.                     var link;
  13.                     link = $(this);
  14.                     link.attr('href',link.attr('href') + window.location.search);
  15.                     });
  16.         });
  17.     </script>
  18.  
  19.     <a href="http://www.google.com">Google</a>
  20.     <a href="http://www.yahoo.com">Yahoo</a>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement