Javascript in Internet Explorer

devongovett

New Member
Messages
33
Reaction score
0
Points
0
Ok so I made a web app with javascript and html. and it works in every browser except IE which shows an error telling me nothing. How can I find out what the problem is? Or even better! can I run some js library or something to make IEs js work like all the other browsers!!!?

Thanks for the help.

I HATE INTERNET EXPLORER!!!!!!
 

VPmase

New Member
Messages
914
Reaction score
1
Points
0
Well if you post the script or a link to the page with the script I'm sure we can find out the problem quicker...
 

masterjake

New Member
Messages
73
Reaction score
0
Points
0
Ehhh well if a little bar pops up on IE saying "To protect your security, Internet Explorer has blocked this because Internet Explorer is very gay" then all you gotta do is click the bar and select "Allow Blocked Content" then the script will operate properly. Another solution may be if you have JavaScript turned off on IE, turn it on. Theres no way to prevent IE from popping up the security bar though, everyone will see it.

Hope this helps!
 

devongovett

New Member
Messages
33
Reaction score
0
Points
0
No its a script problem. I installed The IE Dev Toolbar, and Script Debugger, and it is an eval line. Here is the line which works in every other browser, but internet explorer insists that current.whatever is null.

eval('string = current.' + m.columns[j].toLowerCase()+';');

This is by the way a sortable table that I have made.
Thanks for any help!
 
Top