Skip to content Skip to sidebar Skip to footer

How To Add OnDomReady To My Document?

My project is here: http://jsfiddle.net/2SYvR/2/ The problem is: if I try to run this in my browser with the regular files, no word is showing up. However, if I put all my files i

Solution 1:

Just put your code inside:

window.onload = function() {
//code here
}

Post a Comment for "How To Add OnDomReady To My Document?"