Forum Discussion
ChayceDuncan2
7 years agoQrew Cadet
Without seeing the full code its hard to say - but I've had some success just using window.location, particularly window.location.search and parsing the qb_path out of that.
var url = window.location;
var qb_path = url.search.replace(/\?a=/g, "")
I've done similar operations just doing
if (path === "abc123" && qb_path === "q&qid=45") {}
with pretty good success.
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
var url = window.location;
var qb_path = url.search.replace(/\?a=/g, "")
I've done similar operations just doing
if (path === "abc123" && qb_path === "q&qid=45") {}
with pretty good success.
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
BobbyNeelon
6 years agoQrew Member
Hi Shannon,
I have tried Chayce's suggestion with little luck.
Did you ever figure this out? I am running into a similar issue and would love to figure out a solution. Thanks!
I have tried Chayce's suggestion with little luck.
Did you ever figure this out? I am running into a similar issue and would love to figure out a solution. Thanks!