What jQuery/JavaScript mand can I use to detect whether the DOM (driven by a custom function) has been built before populating the fields inside it? Currently the latter fails unless I put in an alert box in between the 2 actions.
What jQuery/JavaScript mand can I use to detect whether the DOM (driven by a custom function) has been built before populating the fields inside it? Currently the latter fails unless I put in an alert box in between the 2 actions.
Share Improve this question asked May 19, 2011 at 1:04 ErnestErnest 8244 gold badges12 silver badges25 bronze badges 1- http://www.whatwg/specs/web-apps/current-work/multipage/dom.html#current-document-readiness – RobG Commented May 19, 2011 at 2:26
2 Answers
Reset to default 6$(function() { })
will tell you when the DOM is ready to be accessed.
If your custom function is adding things to the DOM, the best way would be to build something into it that notifies some code when it is done.
You can look at document.readyState
. If the page is ready it should be "plete"
.
You can also use document.addEventListener('DOMContentLoaded', function () { })
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745643318a4637822.html
评论列表(0条)