That's jQuery. Wrong list?
On Apr 29, 2011, at 2:15 PM, jk119 wrote:
> am i doing this all wrong?
>
> //Use the fad in out callback
> $("#toolbar").hover(function () {
> $(".image").fadeOut("slow", function () {
> $(this).addClass("imagehover").fadeIn("slow", function () {
> $(this).removeClass("imagehover");
> });
> });
>
> });
> </script>
>
>
> <style type="text/css">
> .imagehover{
>
> background:url(test.png);
> width:200px;
> height:200px;
> }
>
> .image{
> background:url(main.png);
> width:200px;
> height:200px;
> }
>
> </style>
> </head>
>
> <body>
>
> <div id="toolbar">
> <div class="image" id="toolbar"></div>
> </div>
> </body>
> </html>