Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript how to change class of an element by click Reply To: how to change class of an element by click

#247616
Shikkediel
Participant

It’s in the name… cascading style sheet. :-/

Some features will get preference over cascading classes:

  • Unique identifiers (id)
  • Using the important! rule
  • Inline style

It is also actually possible to change the order in the stylesheet (with cssRules) but this is very circumventive and not recommended.