css

Viewing CSS property value suggestions in Notepad++

Using Notepad++ 5.7 I was modifying a .css file, when I blocked/selected a rule and accidentally pressed a key in combination with alt or ctrl and other keys in the lower left-hand side of the keyboard...not sure which keys. Moving on, a list of CSS values came up such as :first-letter a few hundred more. What key commands are needed t...

Disable a:hover styles when some element is visible;

Hello all again, Thanks to Nick Craver, I got this working. What it does, it shows hides a class based on the visible state of something. $('#btCategoriaA').click(function() { $('#listaCategoriaA').slideToggle('slow', function() { $('#btCategoriaA').toggleClass('selecionado', $(this).is(':visible')); }); }); Based on the same...