--- In [email protected], "Salman" <[EMAIL PROTECTED]> wrote:
> I have created an SVG button and embedd it inside the xhtml. I want to > link this with url in <a> so that when user click on this button he is > redirected to the web page <a> is referring to. Button is displayed > but it thumnail does not appear to activate the link. This is an interesting question, I have made some small test case here <http://home.arcor.de/martin.honnen/svg/test2006040501.html> Neither IE 6 with Adobe SVG viewer 3 nor Firefox 1.5 nor Opera 9 preview follow the link when you click into the first SVG image. I think the main problem, at least for Firefox and Opera where the SVG implementation is native, is that the SVG document is itself receiving events and it is not clear how the HTML specification (which allows object inside of an HTML <a> element) and the SVG specification should interact here, what you want for your case is that a click in the SVG document is transferred to the link element in the HTML document embedding the SVG document. With IE where the SVG is handled by a plugin I would not expect that link to work if plugin rendered content is clicked. I don't have a solution to your problem, unless you would use Opera 9 preview, there I have managed to use JavaScript to solve that as the second SVG image link shows where script in the SVG document captures any click and then searches the right HTML link element and calls its click method. ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

