I would like for an events website to open when the event is clicked in the calendar. The code I’m using is below:
scheduler.attachEvent(“onClick”, function (){
window.open(“http://www.google.com”);
This works fine, however instead of opening Google I need to open the event URL stored in the XML file (the tag the URL is stored in is called ‘popup’). Any insight into how I can point to that tag name in the XML file?