Hi,
Is there a way to animate a browser window using jquery. Right now I'm essentially using this:
$(window).animate({
left: '+=50'
}, 5000});
The reason why it isn't working is probably obvious, although not for me. I eventually need to loop an animate effect so that the browser will move back and forth dynamically.
Thanks.