Is it possible to use the more than operator in a jquery criteria
For e.g say i want to get all rows where the rowindex is more than a certain value.
Is it possible somehow or do i need create my own function once I have the result set from jquery?
Is it possible to use the more than operator in a jquery criteria For
Share
For the example mentioned in your question, you can just use the
:gt()selector:For other scenarios, you might need to use the
.filter()method with a callback function.