Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All,

Am having a bit of an issue with javascript events associated with SVG 'defs' tag in Firefox 3.6 & Firefox 4.0b.

I have an image on SVG canvas which is enclosed in 'defs' tags. Now I have an event attached to cursor where the cursor gives the co-ordinates as the mouse rolls over the image. This seems to be working well in Chrome, Safari & Opera but not in Firefox browsers. In Firefox, there is no error shown, just that the co-ordinates donot appear with the cursor movement.

Any advice and suggestions?

Edit: Erik, thanks for the reply. Apologies for the error, I did mean 'defs' tag. here is the code:

var cur= svgDoc.getElementById("BackDrop1")
        cur.setAttribute("stroke-width","1" )
            zain.setAttribute("stroke","black")
            zain.setAttribute("fill","purple")
            zain.setAttribute("stroke","black")
            zain.setAttribute("opacity","0.3")
            zain.setAttribute("pointer-events","all")

      cur.onmousemove=function(event)
        {

            x=event.pageX-320
            y=event.pageY-330
            if(x>0 && y<0)
            {
                document.getElementById("x").value=x
                document.getElementById("y").value=y*(-1)
            }else
                if(x<0 && y<0)
            {
                document.getElementById("x").value=x
                document.getElementById("y").value=y*(-1)
            }else
                if(x>0 && y>0)
            {
                document.getElementById("x").value=x
                document.getElementById("y").value=y*(-1)
            }else
                if(x<0 && y>0)
            {
                document.getElementById("x").value=x
                document.getElementById("y").value=y*(-1)
            }else
                if(x==0 && y==0)
            {
                document.getElementById("x").value=x
                document.getElementById("y").value=y*(-1)
            }


        }

Stackoverflow is not letting me past the SVG code in here for some reason. Ive uploaded the text file onto 4shared. Hope thats ok.

JS & SVG defs issue in FF

share|improve this question

2 Answers

Kayote, consider posting a full file rather than just this piece. There is too much context that is missing. For starters, we can't even see where the id values "x" and "y" were assigned to elements. The error might be there.

I started working with svg content within html files this past week, and the first problem I encountered was that changing the file ending to .xml rather than .html, at least for the particular file I was creating, enabled me to get svg effects to work in the html page when these effects wouldn't otherwise work despite being copied from a working .svg file.

Another problem I encountered was in not using this NS version of document.createElementNS to create a "use" node [ie, you have to specify "http://www.w3.org/2000/svg" as a parameter to this call rather than use the standard .createElement call).

Yet another problem was that for some reason (which I don't yet understand), ansvgelement.setAttribute("visibility", "hidden") did not work while ansvgelement.setAttribute("style", "visibility:hidden") did.

There are various things that might have gone wrong that would have nothing to do with the bit you are focused on.

share|improve this answer
Thanks Jose_X. We eventually resolved the problem. Regard, – Kayote Jan 12 '11 at 6:28

There's no <def> tag in svg. There's a <defs> tag though. It's hard to tell what's wrong without having some sample code, could you include it here or post a link to it? Anything inside of a <defs> tag is not supposed to be rendered directly, so I'm not sure what you mean.

Could the issue be that you have a misnamed tag (<def>) (which will get treated as an unknown tag in the svg namespace by implementations) and which firefox refuses to allow you to reference things from with other elements, such as <use>?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.