Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
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
View solution in original post
Thank you. I will give the code a try.
Views
Like
Replies
Likes