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.