// type JavaScript in here to test if you can access the SVG doc // and dispatch synthesised events to it - I can't var svgScrollEvent = document.createEvent('SVGScroll'); var svgZoomEvent = document.createEvent('SVGZoom'); var svg = document.getElementById('svg').contentDocument; alert(svg);
Evaluate