Search code examples
javascripturlsalesforce

function navigate() { document.getElementById


I am having an issue trying to figure out how to add custom code to a URL that when clicked, it reloads an iframe on the page. I only have access to the URL.

iframe ID = gfgFrame

function navigate() { document.getElementById("gfgFrame").src = "/ClientCommunity/s/all-products?fileInfo=abcXyz";}

URL: javascript:navigate()

How can I add the above directly to the URL instead of using the javascript:navigate() ?


Solution

  • The following code line works:

    javascript:(() => {document.getElementById("gfgFrame").src="/ClientCommunity/s/product-results?fileInfo=xyz";})();