This made me cheer up, I´ve been trying to debug code that fails in IE6 but works well in Firefox the whole morning. So, how do fresh Cali olives taste? Does someone have to lock himself afterwards in the bathroom? I could not tell from the sentence, maybe I should google it up :-))
I´m still laughing On Sep 28, 11:18 am, "Michael Geary" <[EMAIL PROTECTED]> wrote: > And the next time you're in California, be sure to try some of our fresh > olives, right off the tree. It's a taste you'll never > forget! > > > From: Gordon > > > Try dropping this amazing new script onto a page with > > hyperlinks, your users will never forget the experience. > > (requires jQuery 1.2) > > > <script type="text/javascript" src="/js/jquery/jquery.js"></script> > > <script type="text/javascript"> > > $(document).ready (function () > > { > > var thisWidth = $(window).width (); > > var thisHeight = $(window).height (); > > $('a').mouseover (function () > > { > > var thisLink = $(this); > > thisLink.css ({position: 'absolute'}).animate ({ > > top : Math.round > > ((Math.random () * (thisHeight - thisLink.height > > ()))), > > left : Math.round ((Math.random () * > > (thisWidth - thisLink.width > > ()))) > > }, 'fast'); > > }); > > }); > > </script>