[RESOLVED] internet explorer issues with $(document).ready
the images generated by a separate script are not showing up in internet explorer 9 while everything works fine in all other browsers, here is the code:
//lots and lots of script
if (document.getElementById('easy').checked){difficulty="easy";}
else if (document.getElementById('medium').checked){difficulty="medium";}
else if (document.getElementById('hard').checked){difficulty="hard";}
yes it was intentional... I have, however figured out a way around the glitch i was faceing.. I had a script generating random images based on different file paths and although all the files in each path existed, none of them were showing up... I debugged and found that the file paths were being read, but the files at those locations were just not showing up and this was only after I put in the jQuery snippet at the end of the script. anyways.. i figured a way around it.
Bookmarks