Grab a section from a URL and append it a link using jQuery - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:append

Description

Grab a section from a URL and append it a link using jQuery

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){//  w  ww  .  ja v a2s .c  o  m
var link = 'http://your server.com/?param=value&param2=value2';
console.log(link.split('?')[1]);
    });

      </script> 
   </head> 
   <body>  
   </body>
</html>

Related Tutorials