I have an ul-block in wich there are 15 li positions.
First 5 li-s are pre-shown, another 10 are hidden. I have a function that toggles this UL - and if i click the button - it shows that 10 li-s but hides first 5.
I need such Jquery selector, so that the 5 first can be visible every time and not be toggling. This piece of code selects all of them
var ul = $(this).parent().attr('class');
$('.'+ul+' li').toggle();
If there a way to select all except the first 5 ?