Strange things are happening when I use jQuery.
I create a string like this:
myBlock = """<div class="alert alert-success">...</div>"""
But when I try to append it using jQuery,
$("#msg_container").append(myBlock)
The resulting div in the DOM looks like this:
<div alert-success="" class="alert">blah</div>
How can I append an element with two classes using jQuery?