bJQueryUI - pager styling
bJQueryUI - pager styling
Hi all!
I am curious what is recommended way (if possible) to assign some jquery ui classes to datatables pager (full numbers).
I want to achieve 'achieve' hover effect. Is it possible to give pager links ui-state-hover class on hover? (and ui-state-active for currently selected page instead of ui-state-disabled).
Regards,
Lukasz
I am curious what is recommended way (if possible) to assign some jquery ui classes to datatables pager (full numbers).
I want to achieve 'achieve' hover effect. Is it possible to give pager links ui-state-hover class on hover? (and ui-state-active for currently selected page instead of ui-state-disabled).
Regards,
Lukasz
This discussion has been closed.
Replies
[code]$('.fg-button:not(.ui-state-disabled)').live('hover',function () {$(this).toggleClass('ui-state-hover') });[/code]