How can i attach a Onclick event handler to all SVG path element? I have loaded my SVG in an iframe. I tried to use the following but the click event is not firing.
jQuery(function ($) {
debugger;
$('path').click(function () {
alert("Hello");
});
});
<iframe id="frame" src="myFile.svg" border="0" width="100%" height="450px"></iframe>