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.
Page 1 / 1
Use a setTimeout function, such as:
```
var qobj = this;
setTimeout(function() {
jQuery(qobj+" img").hide();
}, 5000); //hide after 5 seconds
```
```
var qobj = this;
setTimeout(function() {
jQuery(qobj+" img").hide();
}, 5000); //hide after 5 seconds
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.