- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2023 10:06 AM
Hi,
Im trying to get the current page's URL using variables set onLoad client script but Im getting java script error when Im trying to create a Request from the portal and Im not getting alert. How can the current page's URL using client script without getting error?
function onLoad {
var a = window.location.href;
alert(a);
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2023 10:29 AM - edited ‎12-03-2023 10:30 AM
Hi @Alon Grod ,
Hope you are doing great.
//If user is accessing from portal view
var url = top.location.href;
var value = new URLSearchParams(url).get('sys_id')
//If user is accessing from catalog view
var gUrl = new GlideURL();
gUrl.setFromCurrent();
Something like this ---
Hope this helps 🙂
Please mark correct if it has resolved or mark helpful if it has contributed in some way to your query.
Thanks, and regards
Anwesha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2023 10:29 AM - edited ‎12-03-2023 10:30 AM
Hi @Alon Grod ,
Hope you are doing great.
//If user is accessing from portal view
var url = top.location.href;
var value = new URLSearchParams(url).get('sys_id')
//If user is accessing from catalog view
var gUrl = new GlideURL();
gUrl.setFromCurrent();
Something like this ---
Hope this helps 🙂
Please mark correct if it has resolved or mark helpful if it has contributed in some way to your query.
Thanks, and regards
Anwesha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2023 10:31 AM
Where exactly is the Client Script running?
Is it really a Client Script, or is is in fact a Catalog Client Script?
Also why do you want to get the current page's URL?
There might be a better, platform best practice way of achieving the actual requirement (which is it b.t.w.)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2023 11:45 AM