jOOX
jOOX copied to clipboard
Lazy create DOM contents when constructing new structures using $(String)
This would mean a great performance improvement, if $(String) and similar methods wouldn't create new DOM documents every time, but only if needed. That way, the following structure would only create one single DOM document:
$("root",
$("child", "text1"),
$("child", "text2")
);
never mind. overlooked thread safety.
never mind. overlooked thread safety.
Yep :)