I am implementing some default styles for a div for a "condition id" as (id="default")
<div id="student" class="student"> /* if(id == "default") */
I need to set some other styles (class="changeStyle"), if the "condition id" is changed i.e. (id != "default")
<div id="student" class="changeStyle"> /*if(id != "default") */
which should be added dynamically, if it's finding the (id != "default").
Any suggesstion/example would be highly appreciated.