What are the performance implications of hiding the complex part of an HTML document in a turned off DIV screen, for example:
<div style="position:absolute;top:-10000px;left:-10000px;"> Lots of HTML here... </div>
compared to using "display: none" or "visiblity: hidden"?
Is there a penalty for using performance / memory? How bad is it? Could this be appropriate if the goal is mobile browsers (iPhone / Android)?
source share