Do you use jQuery for making a site come alive?

Last updated by Brady Stroud [SSW] 10 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.Loving SSW Rules? Star us on GitHub. Star
Stand by... we're migrating this site to TinaCMS