Target iframe Raphael Js
Posted
by user299343
on Stack Overflow
See other posts from Stack Overflow
or by user299343
Published on 2010-03-22T20:10:29Z
Indexed on
2010/03/24
3:43 UTC
Read the original article
Hit count: 708
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"});
© Stack Overflow or respective owner