I have been able to successfully add items to the popup/infoWindow, like this var detailsLink = dojo.create("a", { "class": "action", "innerHTML": "Details", "href": "javascript:void(0);" }, dojo.query(".actionList", map.infoWindow.domNode)[0]); dojo.connect(detailsLink, "onclick", function (evt) { var feature = map.infoWindow.getSelectedFeature(); ExecuteViewPermit(feature.attributes.PermitNumber); });But how can I remove the default 'Zoom To' anchor tag?I have tried adding variations of dojo/jQuery destroy/remove functions using the class selectors to my init and map onLoad functions:dojo.destroy('.zoomTo'); $('.zoomTo').remove();Any suggestions?Thanks,Chad