As the title suggested, I'm trying to call the $(document).ready(function() {...}); from another file. The code snippet is as below:
Source file:
$(document).ready(function () {
alert('document.ready function called!');
// a lot of code
}
And in the test file:
TestFile.prototype.testDocumentReadyContents = function () {
// test code here trying to call the document.ready function
}
I haven't had any success on it yet. I have tried document.ready.apply(), trigger('ready'), overriding the document.ready function... but just couldn't call it. FYI I'm invoking it as part of my unit test.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…