[SVG][Javascript] SVGElementInstance has no method getAttributeNS - Version imprimable +- JeuWeb - Crée ton jeu par navigateur (https://jeuweb.org) +-- Forum : Discussions, Aide, Ressources... (https://jeuweb.org/forumdisplay.php?fid=38) +--- Forum : Programmation, infrastructure (https://jeuweb.org/forumdisplay.php?fid=51) +--- Sujet : [SVG][Javascript] SVGElementInstance has no method getAttributeNS (/showthread.php?tid=5740) |
[SVG][Javascript] SVGElementInstance has no method getAttributeNS - Maz - 10-10-2011 Salut, j'essai d'afficher des informations lors d'un clic sur un SVG, j'ai suivis ce tuto à la lettre mais moi j'ai une erreur: SVGElementInstance has no method 'getAttributeNS' Voici le code:
RE: SVG + Javascript: SVGElementInstance has no method 'getAttributeNS' - Myrina - 10-10-2011 essaie de mettre: Code : tooltip.firstChild.data = evt.target.getAttributeNS(null,'id'); sinon, pour ma part, j'ai préféré utiliser cette exemple: http://svg-whiz.com/svg/Tooltip2.svg RE: SVG + Javascript: SVGElementInstance has no method 'getAttributeNS' - Maz - 10-10-2011 (10-10-2011, 02:07 PM)Myrina a écrit : essaie de mettre: Même erreur. Je penses que celà vient du fait que l'image sur laquelle je cliques est un fichier .svg externe. d'ou "SVGInstance" Edit: pour ceux qui aurait le même problème:
|