Top "Delay" questions

Delay refers to amount of time between two events.

RxJava delay for each item of list emitted

I'm struggling to implement something I assumed would be fairly simple in Rx. I have a list of items, and …

java rx-java delay
Delaying a click event with .delay()

I have a button that gets triggered by the click of another button. I want to delay click of the …

jquery delay timedelay
How to delay jquery animation?

I can't seem to delay the showing of a div. I want to delay the animation by about 20 seconds is …

jquery animation delay
Jquery delay on fadeout

I have this code that changes the opacity of the div on hover. $("#navigationcontainer").fadeTo("slow",0.6); $("#navigationcontainer").hover(function(){ $("#navigationcontainer").…

jquery delay fadeout
Android: use handler post.delayed twice

I would like to know if it's possible to use handler().postdelayed twice? I mean, I want to create a …

android handler delay postdelayed
Delay Actions in Swift

I want to make an Activity Indicator start animating and then stop after one second. So does anyone know how …

xcode swift delay
Can I put delay(500) before an addClass()?

$(document).ready(function(){ $("#info-text-container").click(function(){ $("#info-text").delay(500).addClass("info-text-active"); }); }); This does not put an delay on it when it …

jquery delay addclass
Delay load of iframe?

I know there are some tools and techniques for delaying the load of javascript, but I have an iframe that …

javascript iframe delay
How to delay a loop in android without using thread.sleep?

I wanted to delay a for loop without using Thread.sleep because that method make my whole application hang. I …

java android loops delay
How to repeat (loop) Jquery fadein - fadeout - fadein

I am struggling with my first jQuery script. I've got a DIV on my page that is set to hide …

jquery delay fadein fadeout