in my html I have:
<div id="testId">
<img src="img/Capture.PNG" alt="0" style=" background-color: red; margin-left:50px; "/>
</div>
In javascript I have:
$(function () {
$("#testId").fadeOut(2000, function () {
alert('animation complete');
});
});
I have also tried:
$(function () {
$("#testId").fadeOut("slow", function () {
alert('animation complete');
});
});
and my image does not animate. it goes from 100% visible to 0%.
Edit
It does not work in any browser. I have tried google chrome, safari, and firefox.... It is really strange. I wish I can show you a video of my computer