Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var id = "";
  2. var oTable = $(".table").dataTable();
  3.  
  4. $(".check_quality:checked", oTable.fnGetNodes()).each(function() {
  5. if (id != "") {
  6. id = id + "," + $(this).data('id');
  7. } else {
  8. id = $(this).data('id');
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement