tags:

views:

126

answers:

1

I have a page with an object tag that contains a SVG. Is there an easy method to make it clickable (in order to show a larger version in a popup when clicked)?

+3  A: 

You have to put onclick="doSth()" inside the <svg> tag.

räph
Thanks, it works!
rslite