Do you use jQuery for making a site come alive?

Last updated by Brady Stroud [SSW] about 2 months ago.See history

To please customers every business knows they need to keep their services and offerings fresh and up-to-date. The same is true for websites. In order to attract new traffic, we should make the website vivid.

OldFashionSite
Figure: Bad example – there is no response when mouse is over the image

NewFashionSite
Figure: Good example – apply the different style when mouse is over

$("p").hover(function () {
            $(this).css({ "background-color":"yellow", "font-weight":"bolder" }); },
            function () {
                var cssObj = { "background-color": "#ddd",
                "font-weight": "",
                color: "rgb(0,40,244)"
            }
            $(this).css(cssObj);
        });

Figure: Mouse hover code sample

Adam Cogan
We open source. Powered by GitHub