Pagination title attribute
Pagination title attribute
![the_bowwer](https://secure.gravatar.com/avatar/93d1afb868a9b89ac409922666a61a28/?default=https%3A%2F%2Fvanillicon.com%2F93d1afb868a9b89ac409922666a61a28_200.png&rating=g&size=120)
Hello,
I can't find a way to add a title attribute to the elements of pagination. I use "full_numbers" as "sPaginationType".
Also, Is there a way to transform those to elements ?
I use 1.8.2 version of datatable.
Thanks fo help !
I can't find a way to add a title attribute to the elements of pagination. I use "full_numbers" as "sPaginationType".
Also, Is there a way to transform those to elements ?
I use 1.8.2 version of datatable.
Thanks fo help !
This discussion has been closed.
Replies
Update to DataTables 1.9 :-)
To set a title attribute you would just use a little jQuery:
[code]
$('div.dataTables_paginate span').attr('title', 'hello');
[/code]
If you want something more elaborate such as the text 'Next' etc, you can just use a different (more selective) selector.
Allan