Is it possible to override css dynamically?
Like in css we specify
.mainDiv{
min-height:100px !important
}
Is it possible to do the same with jquery css?
I've tried
$(".mainDiv").css({"min-height" : ($(window).height() * 0.7) +"px !important"});
But this doesn't work.