Alert Before Leaving A Survey Page Using JavaScript
You can add this script to a theme extension (usually in custom.js), to warn a user if they try to leave your survey:
(window).on('beforeunload', function(){
var c=confirm();
if(c){
return true;
}
else
return false;
});
We greatly appreciate your feedback.




Powered by LiveZilla Helpdesk