Dustin
Dustin

Reputation: 89

Pull variable from Query String and add into JS redirect URL

I'm trying to get the value of a variable in the query string example.com/?hop=test

And then pass it to a JavaScript in this form:

var exitsplashpage = 'http://example2.com/?hop=original_hop';

How do I get the original hop variable value using JavaScript and what is the correct format to put it into the exitsplashpage var?

Thanks!

Upvotes: 0

Views: 3036

Answers (2)

Town
Town

Reputation: 14906

Using this getQueryString() function from the link that @Felix Kling posted, you would do the following:

var exitsplashpage = 'http://example2.com/?hop=' + getQueryString()["hop"];

Either that, or have a look at jQuery Query String Object, with which you'd do this:

var exitsplashpage = 'http://example2.com/?hop=' + $.query.get("hop");

Upvotes: 1

clmarquart
clmarquart

Reputation: 4721

Try this:

var exitsplashpage = window.location.search.match(/\?hop=([^\&]*)/)[1]

Upvotes: 0

Related Questions