Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

SOW how to get url params ?

KelvinY2025
Tera Contributor
var url = new GlideURL(window.location.href);
var paramValue = url.getParam('myparam');
if (paramValue) {
   console.log('Parameter exists with value:', paramValue);
} else {
   console.log('Parameter does not exist.');
}
 
(g_env) [SCRIPT:EXEC] Error while running Client Script "Incident Demo01": ReferenceError: GlideURL is not defined
why ?  How to do ?
0 REPLIES 0