The .addClass is not working for me in Firefox, it only works if i take off the "background:#f2f2f2;" from the CSS or "class="hovering" out of the tag. Otherwise this works in all browsers, chrome, IE and opera

<style>

        .addToFav div{background:url('/images/star_no.png') no-repeat scroll !important; height:25px; margin:0 auto; width:25px; z-index: 999}

        .addedToFav div{background:url('/images/star_yes.png') no-repeat scroll !important; height:25px; margin:0 auto; width:25px; cursor:default;}

        tr.hovering:hover{ background-color:#f2f2f2}

</style>


<script>
    $(document).ready(function()
        {

        $("a.addToFav").click(function(){


            $($(this).removeClass("addToFav").addClass("addedToFav"));

        }); 

    });
</script>


            <table><tr class="hovering"><td>
                <div style="float:right"><a class="addToFav" href="#">
                <div></div>
                </a>
                </div>
            </td></tr></table>

Is this possibly a bug?

link|improve this question
Can you create a demo on jsFiddle.net , and post a link here? – Joseph Silber Sep 8 '11 at 2:40
You don't need to wrap that second line in $(...). Probably not your solution, but still not something you should do. – Dennis Sep 8 '11 at 2:44
Fiddle link: jsfiddle.net/locochris05/SsNQL which doesnt work in firefox – Christian Sep 8 '11 at 3:32
By the way. Please mark the correct answer as the correct one by clicking on the tick if it works for you. This is so others can benefit from the answer. Also upvote it if you really like the answer – griegs Sep 8 '11 at 3:47
Thanks griegs, sorry new here :) loving this site thanks to all of you! – Christian Sep 8 '11 at 5:42
feedback

2 Answers

up vote 0 down vote accepted

Don't know why yours does not work but I changed the hover to a jQuery call and removed the style for the css hover.

Very weird problem. +1 Loved it!

<script>
    $(document).ready(function () {

        $("a.addToFav").click(function () {
            $(this).removeClass("addToFav");
            $(this).addClass("addedToFav");
        });

        $("tr.hovering").hover(function () { $(this).addClass("trhover"); }, function () { $(this).removeClass("trhover"); });
    });
</script>


<table><tr class="hovering"><td>
    <div style="float:right">
        <a class="addToFav" href="#"><div></div></a>
    </div>
</td></tr></table>

<style>
    .trhover{ background-color:#f2f2f2 }
    .addToFav div{background:url(http://www.localisado.com/images/star_no.png) no-repeat scroll; height:25px; margin:0 auto; width:25px; z-index: 999}
    .addedToFav div{background:url(http://www.localisado.com/images/star_yes.png) no-repeat scroll; height:25px; margin:0 auto; width:25px; cursor:default;}
</style>
link|improve this answer
Changing the hover to a Jquery called work! yes it is a weird problem, This is my 48th hour trying to find an answer, thanks! – Christian Sep 8 '11 at 5:34
feedback

In addedToFav class if you are setting a background-color then add !important to it. This will ensure to give more precedence in case there are other conflicting style rules in the on the page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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