Skip to main content

All Questions

Tagged with
2 votes
1 answer
300 views

SVG hover won't work in Firefox

I have a fairly large SVG and there are specific paths that change when hovered on. This works in Chrome but not Firefox. Each section that is to be animated is nested in a link tag, the hover effect ...
Austin Jones's user avatar
1 vote
0 answers
170 views

svg hover overlapping elements in Firefox

I have a svg with some circles that should get bigger on hover, here is a snippet !This will not work in Firefox var svgRoot = $('.svg-root')[0]; $('.bubble').mouseover(function (e) { ...
Toralf Schneider's user avatar
1 vote
0 answers
625 views

SVG mouseover and hover bug in Firefox?

.dot { stroke:none; fill: red; } .dot:hover { fill: yellow; } <svg preserveAspectRatio="xMidYMin" width="100%" height="100%" viewBox="-1 -1 2 2"> <g transform="translate(0,0) scale(1)"...
Hendekagon's user avatar
  • 4,633