There are some problems on Screen1.
1) for Input3 on Value change run the following JavaScript code:
codeif (localStorage.getItem('Anwer1') == 'dogs') {
Tiggzi('Output1').show();
}
Tiggzi('Wrong1').hide();
if (localStorage.getItem('Answer1') != 'dogs') {
Tiggzi('Wrong1').show();
}/code
2) for Button1 on Click event run:
codeif (localStorage.getltem('Answer1') == 'hamster') {
Tiggzi('Output1').show();
}
Tiggzi('wrong1').hide();
if (localStorage.getItem('answer1') == 'dogs') {
Tiggzi('wrong').show();
}/code