Code :
isDomLoaded = $(function () {
setTimeout(function () {
if (renderFinished) {
renderSocial(fotoProssima);
} else {
isDomLoaded();
}
}, 300);
});
it says isDomLoaded is not a function
|
Code :
it says |
|||
| show 1 more comment |
|
Thats because it isn't a function. It is a jQuery object. What you need might be:
If you want to run it when the DOM is ready then do this after you declare the function:
However, I think what you really need is to get rid of the isDomLoaded function and just use the following:
|
|||||||||||||
|
|
You asked in one of the comments how to both assign and execute a function simultaneously, which I think is an interesting question. Posting for posterity:
|
|||
|
|
$(function(){...});? The function will only be called when the DOM is fully loaded... – Shmiddty Oct 12 '12 at 15:16