I am using Kendo UI tabs so once tabs reach the last li list the right navigation arrow get hidden or added the display none inline CSS with jquery so I want to override the display none to display block !important and add opacity 0.4 when div have display none property.
https://dojo.telerik.com/@vishal14/UcaPEYoh
I try with if statement but its not working
<script>
$(document).ready(function () {
$("#tabstrip").kendoTabStrip();
if($('.k-button').is(':visible')){
$(this).css("opacity","0.2");
}else{
$(this).css("opacity","1");
}
});
</script>
$('.k-button')in code shown (or in demo link) andthisis thedocument