var gamesElement=document.getElementById('games'); //Line 33
gamesElement.addEventListener('aftertransition', function(event) { //
Line 34
getAthleticGamesAndScores();
});
in the Firefox, this is the error message I'm receiving:
"uncaught exception: [Exception... "Not enough arguments" nsresult:
"0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" location: "JS frame ::
http://web.adelphi.edu/scott/mobile/athletics.php#_games ::
anonymous :: line 34" data: no]"
Has anyone come across this error in FF? if so, is there a workaround?
Any insight would be appreciated.
- Scott
gamesElement.addEventListener('aftertransition', function(event) {
getAthleticGamesAndScores();
},true|false);
IE, add true or false depending on your requirements. true=capturing
phase, false=bubbling phase (I think)