bJQueryUI - pager styling

bJQueryUI - pager styling

dzidadzida Posts: 23Questions: 0Answers: 0
edited May 2010 in General
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

Replies

  • jneilliiijneilliii Posts: 15Questions: 0Answers: 0
    edited May 2010
    Adding the below code to your $(document).ready function should do the trick for the hover effect.
    [code]$('.fg-button:not(.ui-state-disabled)').live('hover',function () {$(this).toggleClass('ui-state-hover') });[/code]
This discussion has been closed.