While working with jQuery, I encountered a warning from Firefox regarding the following code snippet:
$("li.example div.code:gt(4)").hide();
Firefox indicates a CSS Error: Unknown pseudo-class or pseudo-element 'gt'.
Although the code works as intended, I am curious about resolving this error for the sake of clarity. Any suggestions?