Skip to content
Advertisement

Applying CSS to Datatables that has NEXT Page [closed]

I have this Script that works and does what I need, but it will only apply to the first 10 rows, not to the next page. My Table id is “MyTable” Here is my JavaScript:

JavaScript

So needless to say I am kida stuck here where at row 11th, my script quits working through next pages, I would appreciate any suggestions. See Image here

Advertisement

Answer

Only rows that are visible in the datatable are actually in the DOM. Therefore you could either call your $.each loop each time the page changes or (I think better) use https://datatables.net/reference/option/createdRow or https://datatables.net/reference/option/columns.createdCell

Here’s a working JSFiddle: https://jsfiddle.net/dhqcekm9/

CSS

JavaScript

HTML

JavaScript

Javascript

JavaScript

JSFiddle Datatable page 2

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement