HOW TO
Adding a hyperlink to an InfoWindow footer (next to the Zoom to hyperlink) can be achieved by using the domConstruct.create function. The effect is as shown in the example below:

Code:
var link = domConstruct.create("a",{
"class": "action",
"id": "statsLink",
"innerHTML": "More Information", //the text representing the link
"href": "javascript: void(0);"
}, query(".actionList",map.infoWindow.domNode)[0]);
on(link, "click", [function name]);
function cp(evt){
window.open("https://url"); //set the url to be displayed
}
Note: The code snippet can also be used to activate geoprocessing tools. For more information, refer to the following web help document: ArcGIS API for JavaScript: Geoprocessing tool link in popup
Note: The code only works for ArcGIS API for JavaScript 3.x.
Article ID: 000014528
Get help from ArcGIS experts
Start chatting now