Goto web page upon click of Close button

From Catglobe Wiki
Revision as of 10:20, 12 April 2017 by Hovietluu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
If you want to go to your web page upon click Close button on End question,

Please insert your web page link to code below and paste them into question's JS of END QUESTION ( question was set to "END")


Question.bind('afterShowQuestion', function(question, answerSheet, element) {

 $('.close:eq(0)').click(function(){
 window.location = "Insert your web page link"; // 
 });
});


Buttonclose.png