So I am working on something that wasn\'t well thought out in the build from the backend team. That leaves me with a document full of divs.
What I am doing is rolling b
An element can have any number of classNames, however, it can only have one class attribute; only the first one will be read by jQuery.
Using the code you posted, $(".alert-box.warn") will work but $(".alert-box.dead") will not.
$(".alert-box.warn")
$(".alert-box.dead")