This code does't seem to work as well when a viewbox attribute is placed on the svg element. How would you adjust the coordinate calculations to compensate for an arbitrary viewbox?
Thanks, Royce --- In [EMAIL PROTECTED], "Doug Schepers" <[EMAIL PROTECTED]> wrote: > Hi, Ravi- > > I'm not sure why you thought that would work. There are no native tooltips > in SVG (yet, though SVG1.2 changes that), and there is no 'alt' attribute > for SVG elements. (Also, it's not typically safe to try the dot-accessor > method of accessing attributes, and you should be using the namespace-aware > methods for createElementNS, like you did for setAttributeNS, but that's not > why your script isn't working.) > > I happen to have a little tooltip implementation in JavaScript that might > help you out: > > http://svg-whiz.com/samples.html#tooltip > > Hope that helps- > Doug > > doug . schepers @ vectoreal.com > www.vectoreal.com ...for scalable solutions. > > > dandiya wrote: > | > | > | I am trying to implement a tool tip for a mouseover event in > | svg,This is the code I wrote inside my java script file. > | > | > | var q = svgdoc.createElement('a'); > | q.setAttributeNS > | ('http://www.w3.org/2000/xlink/namespace/','xlink:href',sysLink); > | p.appendChild(t); > | p.appendChild(_title); > | q.addEventListener("mouseover", showToolTip, false); > | q.appendChild(p); > | canvas.appendChild(q); > | > | > | function showToolTip(evt) > | { > | var target = evt.target; > | target.alt = "My tooltip text" > | } > | > | This doesn't work. The mouseover event is triggered but the code > | inside this is not working,I put an alert and ofcourse the alert > | comes.I really need to complete this today. Any help is greatly > | appreciated.. > | > | Thanks > | Ravi > | ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- 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/

