I have the following JavaScript in my page:
function loadurl(url) {
window.parent.location = url;
}
Here is the strXML var with the link in ASP:
link='javascript:loadurl(index.asp);'
also tried:
link='javascript:loadurl('index.asp');'
and:
link='""javascript:loadurl('index.asp');'""
The click event on the map is not working. I'm trying to target the parent from an iFrame where the map is located. Any ideas?