How to insert pictures which automatically diseapper in the survey | XM Community
Solved

How to insert pictures which automatically diseapper in the survey

  • 31 January 2019
  • 1 reply
  • 1 view

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.
icon

Best answer by TomG 31 January 2019, 15:19

View original

1 reply

Userlevel 7
Badge +27
Use a setTimeout function, such as:
```
var qobj = this;
setTimeout(function() {
jQuery(qobj+" img").hide();
}, 5000); //hide after 5 seconds
```

Leave a Reply