Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<iframe id="foo"></iframe>
<div id="bar"></div>
<script>
$ = document.querySelector.bind(document);
var target = document.getElementById("bar");
target.animate([{"backgroundColor":"blue"},{"backgroundColor":"green"}], {"duration":10});
$('iframe').contentDocument.documentElement.appendChild(target);
$('#foo').remove();
</script>