Hi Team,
I need to open custom URL in a new window through Sitemap. Example "https://www.google.com"
I already tried using below code as suggested in
"https://community.dynamics.com/365/sales/f/762/t/246210" but it does not work :
<html lang="en" xmlns="www.w3.org/.../xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
function openExternalLink() {
window.history.back();
window.open("https://www.google.com;, "_blank");
}
</script>
</head>
<body onload="openExternalLink();">
<h1>Test Web Resource</h1>
</body>
</html>
*This post is locked for comments