Using jquery on items not in the current page
Using jquery on items not in the current page
If I use jQuery to get the value of a select I get "" if the object is not on the currently visible page.
This discussion has been closed.
If I use jQuery to get the value of a select I get "" if the object is not on the currently visible page.
Replies
Use
cell().node()to get the cell from Datatables which can be used as the jQuery selector. Something like$( cell(row, col).node() ).val().Kevin