JQuery Tabs Change Pointer onDrag
I am using JQuery Tabs and wou开发者_如何学运维ld like to change the pointer when I drag it.
Anyone know where to look to find out how to do that please?
CSS
.ui-tabs ul.ui-tabs-nav li.ui-state-default{cursor: pointer;}
give this a go, but put it after any other css you may have on the page already on css, or you can use it on
jQuery
$('.ui-tabs ul.ui-tabs-nav li.ui-state-default')
.css({'cursor': 'pointer'});
while the event is triggered [ondrag event]
精彩评论