For methods, look at
http://www.learnsvg.com/tutorial2/catalog.php
Click on method to get example with code.
Use
var svgdoc = evt.target.ownerDocument
and not
var svgdoc = evt.target.ownerDocument()
In your code, you clone a node, but to get this node in DOM, you have to append it somewhere.
Michel