Setimeout() statement in javascript widget not working in mendix ??

0
Need a quick resolution. What to use in place of Setimeout() in javascript widget in mendix. As the Setimeout()  function is very unstable in mendix.
asked
1 answers
-1

Hi Sagar,

I usually use the html snippet with jQuery to do a timeout. 

jQuery(document).ready(function() { 

   setTimeout(function() { 

   //code here

}, 100); 

 

}); 

 

Hope this helps!

answered