View Single Post
Old 09-18-2012, 08:42 PM   PM User | #4
sayannayas
New Coder

 
Join Date: May 2012
Posts: 25
Thanks: 0
Thanked 1 Time in 1 Post
sayannayas is an unknown quantity at this point
Recently i had a scenario where i need to pin a jgrowl message(a jquery message board).I needed a notification change through two icons one with a background darker than the other to differentaite pin & unpin..you can see the example here

http://fundapass.blogspot.in/2012/09...ith-pinup.html

if you want simply a change in css,as in google home page menu bar this will do the trick
Code:
 $('#panelroot > a').hover(
           function () {
        	   $(this).css("color","F8FAFC");
             },
           function () {
            	 $(this).css("color","#B7C9D7");
           }
       );
  
  });
sayannayas is offline   Reply With Quote