So, I have a template div like this:
<div class='container'>
<div class='mybox invisible' id='template'>
<span>some stuff</span>
<div>test</div>
</div>
</div>
So I want to clone it to create items based on it.
new_item = $('#template').clone()
$(new_item).removeClass('invisible').attr('id','some_crap').appendTo('.container')
It works beautifully. BUT, if I run this code ON DOCUMENT READY (to pre-load some items), then everything gets an inline visibility: hidden added (the .mybox div, and ALL its children).
My workaround for now is, instead of pre-loading my items on dom ready, waiting 1 second.
setTimeout (->
preloadOffices()
), 1000
(yea, coffeescript)
That seems to do the trick, but I'm wondering if there are more elegant solutions.