How to insert pictures which automatically diseapper in the survey | XM Community
Skip to main content
Hi,



I'm developing a survey where I want to insert pictures which automatically diseapper after a few seconds.

How do I need to do this? I understanded that this needs to be possible with custom code.
Use a setTimeout function, such as:

```

var qobj = this;

setTimeout(function() {

jQuery(qobj+" img").hide();

}, 5000); //hide after 5 seconds

```

Leave a Reply