have this bit of code
$(".BusinessCard").append("<div><h2>booo</h2></div>").addcClass("boo");
and also tried
$(".BusinessCard").append("<div><h2>booo</h2></div>").attr("class").addcClass("boo");
Although it was my impression that addClass should have done the trick.
On my page I see the new div w/the boo. But no class. What’s up w/that?