Target iframe Raphael Js
- by user299343
Ive been trying to target iframe using Raphael JS
heres some sample code
var c = paper.circle(10, 10, 10);
c.attr({href: "http://google.com/", target: "top"});
v
var t = paper.text(250, 50, "Raphaël\nkicks\nbutt!");
t.attr({href: "http://google.com/", target: "_blank"});
Also..cant get href to work with text
ar t = paper.text(50, 50, "Raphaël\nkicks\nbutt!");
t.attr({href: "http://google.com/", target: "_blank"});