-3

How to pass the values from one page to other page using the url in jquery.

I got few examples from google, below is my code but not able to pass the values.

Can any one help me on this ?

Jagadeesh
  • 121
  • 2
  • 7

1 Answers1

1

This is the function I always use in my work

function getParameterByName(name) {
    name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
    var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
        results = regex.exec(location.search);
    return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}

from an SO answer here. Please note that you don't need to use jquery for this.

To use it:

Given a URL

http://www.example.com?testParam=value

get its value by

var myVal = getparameterByName("testParam");

I hope it helps.

Community
  • 1
  • 1
Rey Libutan
  • 5,226
  • 9
  • 42
  • 73