Goto web page upon click of Close button

From Catglobe Wiki
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