disable onMouseOver highlighting for a tab?
Is there a javascript function I can use/override to selectively prevent tabs from being highlighted during a mouse over event?
thanks
thanks
wombat
February 8,
.aw-ui-tabs .aw-mouseover-item {
background-position: 100% -100px;
}
.aw-ui-tabs .aw-mouseover-item .aw-item-box {
background-position: 0px -150px;
}
<style>
.aw-highlight-false {
background-position: 100% 0px!important;
}
.aw-highlight-false .aw-item-box {
background-position: 0px -50px!important;
}
</style>
<script>
var obj = new AW.UI.Tabs;
obj.setId("myTabs");
obj.setItemText("text");
obj.setItemCount(5);
obj.getItemTemplate(1).setClass("highlight", false);
document.write(obj);
</script>
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021