开发者

How to remove the background of jquery tabs without affecting the datetimepicker?

I have a jquery tab in my asp.net mvc2 web page, and it has a background(tab content background) that I need to make white. So this is what I typed:

$(function() {
    $("#tabs").tabs();
$(".ui-widget-content").css("background", "none");
});

But, this makes my datetime pic开发者_如何转开发ker also background: none.

I want to do this for the tab content background only. Any ideas.

Thanks


This:

$(".ui-widget-content").css("background", "none");

Should be:

$(".ui-tabs-panel").css("background", "none");
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜