I have just upgraded to IE9 RC (which i must add isnt too bad an attempt by microsoft, so far, they still have time to mess it up! Please dont comment below on how wonderful
First off check if some of your code is incorrect in your $(document).ready()
. if that all looks fine reload your page and hit F12 click the script tab then click start debugging and it will reload the page and halt it with a break point at your error in javascript.
jQuery does work in IE9 RC I use it myself for testing.
However if your doing some thing IE don't support near the top of your $(document).ready()
it could be preventing the rest of the page from loading.
If this is down to console.log
there is a good way to prevent IE from haling of console.log
:
if(console == undefined){ console = {log:function(){}}; }