How to change pagination HTML?

How to change pagination HTML?

luisluixluisluix Posts: 6Questions: 2Answers: 0

When I have multiple pages on pagination both ellipses have the same ID id="blabla-table_ellipsis" , Im trying to get rid of one of those IDs, or to remove both IDs, but im not sure which event or method would be the best way to do that.

Answers

  • luisluixluisluix Posts: 6Questions: 2Answers: 0

    I ended up doing:

                fnDrawCallback: function (settings) {
                    $("#blabla-table_ellipsis").removeAttr("id");
                },
    
This discussion has been closed.