Is it possible to use Javascript to shake Firefox browser?
I find a script that works on Safari but that script doesn't seem to work on Firefox. http://www.jhuskisson.com/javascript/earthquake-effect-shake-the-browser

Thanks,
Tee

link|improve this question

45% accept rate
8  
AFAIK, that is no longer possible in modern browsers. And thank goodness for that :) – Pekka Feb 24 '11 at 0:43
@Pekka: Though it could be more interesting again for modern browser games... "special effects" :D – Felix Kling Feb 24 '11 at 0:53
Unfortunately--once allowed via NoScript--the script example posted does work. – JYelton Feb 24 '11 at 1:40
I think by default the option in Firefox to "move or resize existing windows" is NOT enabled? So the script might work, but Firefox might be stopping it. – jlbruno Feb 24 '11 at 1:43
feedback

1 Answer

Because I use NoScript, this code would not execute unless I allowed it on my browser. But be warned, if you shake my browser window, I will probably blacklist your site and send flying monkeys to devour your soul.

Here is an implementation that works...use with caution:

<html>
    <head>
        <script language="javaScript">
            function shakescreen(n)
            {
                if (parent.moveBy)
                {
                    for (i = 10; i > 0; i--)
                    {
                        for (j = n; j > 0; j--)
                        {
                            parent.moveBy(0, i);
                            parent.moveBy(i, 0);
                            parent.moveBy(0, -i);
                            parent.moveBy(-i, 0);
                        }
                    }
                }
            }
        </script>
    </head>
    <body>
        <form>
            <input type="button" onClick="shakescreen(4)" value="Shake Browser Window">
        </form>
    </body>
</html>
link|improve this answer
1  
+1 for soul devouring + monkeys – Alec Gorge Feb 24 '11 at 1:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.