I have encountered an issue when testing and trying to run my application, which has worked before today.
When attempting to move to my 'Results' page on a quiz, the load icon just spins and the results page does not open.
Debugging in Chrome, the following error is displayed: "Uncaught ReferenceError: Tiggzi is not defined"
On the results page, I am executing javascript on load - the reference to Tiggzi can been seen below where I update the total score 'result' and display a message 'message'.
Code: Select all
Tiggzi('result').text(''+sumValue);
if (sumValue < 1) {
Tiggzi('message').text('You got answer correct.');
}
Removing the following lines from the javascript allows me to progress to the results page, but obviously the result and message are not updated.
What has changed recently to prevent this from working?
What do I need to do to get it working correctly?