JQuery Delay to Call Function

 $(this).delay(1000).queue(function() {

     // your Code | Function here
     
     $(this).dequeue();
  
  });
Tiago F2