and what do you mean with completly loaded? as acoder said, you may use the document's onload-event to be sure that the dom-nodes are ready to use ... when you mean some data-loading that is done by ajax-calls you just can rely on the callback that is executed when the response is ready (assuming that the calls are async) ...
Comment