开发者

JQuery Tabs Change Pointer onDrag

开发者 https://www.devze.com 2023-02-26 02:21 出处:网络
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

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]

0

精彩评论

暂无评论...
验证码 换一张
取 消