Randomly Inserting Images Into Table Using Javascript
I'm very new to javascript and I'm creating a game where a user re-arranges a table of pictures by clicking. The images are really scrambled pieces of a larger image that the user
Solution 1:
Your code is running before the elements are available on the page.
Move the script to the bottom, just before the closing body-tag.
Post a Comment for "Randomly Inserting Images Into Table Using Javascript"