0 votes
in SoSci Survey (English) by s160595 (220 points)
edited by s160595

How can I make messages box and notifications appear while the participant is doing something, e.g answering some question? My idea is to interrupt the participant from what they are doing so that they have to get back to it again after closing the message.

1 Answer

+1 vote
by SoSci Survey (304k points)
selected by s160595
 
Best answer

You can work with JavaScript, the easiest example:

<script type="text/javascript">
window.setTimeout(function() {
  alert("You're interrupted!");
}, 1000);
</script>

If you like a bit more visuals, start reading here: Click to Show Information

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...