I apologize in advance, I am a designer primarily, but am trying to do some animation w/out Flash. I basically need a logo to load then shake then stop. I need it to happen on load (the shaking is a client request...).
Right now, this works when you click it, but I need it to run automatically.
Here is the code
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){
jQuery.fn.shake = function() {
this.each(function(i) {
$(this).css({ "position" : "absolute" });
for (var x = 1; x <= 3; x++) {
$(this).animate({ left: 43 }, 10).animate({ left: 23 }, 50).animate({ left:23},10).animate({ left: 13 }, 50).animate({ left: 43 }, 50).animate({ left: 33 },50).animate({ left: 43 }, 50);
}
});
return this;
}
$("#logo").click(function() {
$(this).shake();
});
});//]]>
</script>

$(element).click();– adeneo Aug 23 '12 at 0:00