Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Text color fade on hover with jQuery?

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #32514
    mikes02
    Participant

    I am utilizing the following code, thought it would work but it isn’t, I have navigation links that I want to be one color, and then on hover a new color fades in. What am I missing?



        	
    #49017
    eagleworks
    Member

    Are you including the jQuery UI library?

    #48983
    mikes02
    Participant

    No, I thought I could use this jQuery color plugin

    #48984
    mikes02
    Participant

    removed color plugin and incorporated UI library and it worked :)

    Thank you!

    #48985
    mikes02
    Participant

    How would I go about holding a specific color if it had an “active” class?

    #48905
    eagleworks
    Member
    $(".yourclass").hover(function(){
    $(this).toggleClass("activeclass");
    return false;});
Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.