I need to parse the search results page URL to report on the search term. Example: http://about.jstor.org/search/site/plants - "plants" is the search term
I am not sure how the custom JS should to be set-up. Do I use "var url=window.location.href"? Is the JS set-up to capture the term after /search/site/?
How I am not sure how to do this and would appreciate some help.
Thank you,
Bill
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Bill,
You can use a script something like below:
var url = "http://about.jstor.org/search/site/plants"; var v; if (url.indexOf('search/site') > 0){ v = url.substr(url.indexOf('search/site')+12); }
The value we are capturing here in variable 'v' can also be populated to a custom variable.
Regards,
Kaushalendra Singh
Views
Replies
Total Likes
Hi Bill,
You can use a script something like below:
var url = "http://about.jstor.org/search/site/plants"; var v; if (url.indexOf('search/site') > 0){ v = url.substr(url.indexOf('search/site')+12); }
The value we are capturing here in variable 'v' can also be populated to a custom variable.
Regards,
Kaushalendra Singh
Views
Replies
Total Likes
Thank you. I will give the code a try.
Bill
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies