I have an issue with using $(this) and :gt() together.
I'm trying to convert this pseudo code into working code:
$(this).children().gt(3).show();
Will this work? I am trying to show the children of this with an index over 3.
gt is only a selector as far as I know, not a function, try
$(this).children(":gt(3)")
or
$(this).children().slice(3)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With