Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an inline SVG in an HTML file. This SVG has an animation inside with an id "move".

If I call this animation using jQuery 1.9.1 to modify its attributes, like so:

$("#move").attr("from", "500");

it works perfectly (in Firefox 16.0.1 at least, I haven't tested other browsers).

If I try to launch the animation using jQuery like this:

$("#move").beginElement();

it doesn't work, again in Firefox.

If I call it using JavaScript like this:

var move=document.getElementById("move");
move.beginElement();

it works.

How do I call the beginElement() function using jQuery?

Thank you.

share|improve this question
possible duplicate of JQuery methods and DOM properties – Felix Kling Feb 19 at 17:51

1 Answer

up vote 1 down vote accepted

This will do what you're asking...

$("#move")[0].beginElement();

Without knowing more I can't say much more than that. jQuery()[0] returns the DOM element, rather than the jQuery object.

share|improve this answer
Thank you! Very much! It works. – user2088176 Feb 19 at 20:13
No worries - glad to help :) – Archer Feb 20 at 11:05

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.