I've got a big element, that includes SVG embed element (external file). I'd like to change its fill colour on a:hover. How would you approach it? It really drives me crazy :)
What I thought should work is:
$("a#title").hover(function() {
$("svg#logo").attr('fill','#f0f');
});