When trying to switch tabs in IE7, and was encountering the error " 'target' is null or not an object ".
I remedied this by adding a single line of code to code/tabs/javascript.js to the this.clicked function (line 61)
if(!event) var event=window.event;
This line checks if the event variable exists, and if it doesn't, assigns it to window.event
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When trying to switch tabs in IE7, and was encountering the error " 'target' is null or not an object ".
I remedied this by adding a single line of code to code/tabs/javascript.js to the this.clicked function (line 61)
This line checks if the event variable exists, and if it doesn't, assigns it to window.event
great - good fix! I'll try and find some time to add this to the next release..