I\'m using jQuery CSS function to style some elements
$element.css(style);
This works, but a part of the elements are created dynamically a
There's no event for elements created (not universally available, anyway). You could
Chain the css() method when you create your elements:
$('
')
.appendTo(document.body)
.css(style);
Create a new stylesheet dynamically:
$("