Jquery ui tabs prevent ui-tabs-selected ui-state-active being added?

There are a few ways you could do this. Download the full jQuery UI code and strip out the code which adds the styles to the tab, then minify that again yourself if needed: ajax.googleapis.com/ajax/libs/jqueryui/1... Use the jQuery UI tabs select event to remove the classes: $( ". Selector" ).

Tabs({ select: function(event, ui) { $(". Selector . Ui-tabs-nav > li").

RemoveClass("ui-state-active"). RemoveClass("ui-state-selected"); } }); Just override the styles for ui-state-active and ui-state-selected with your own CSS: . Selector .

Ui-tabs-nav > li. Ui-state-active { color: #FF0000; } . Selector .

Ui-tabs-nav > li. Ui-state-selected { color: #FF00FF; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions