I have a jquery event that I want to occur only after a certain amount of time. Apparently, delay
only works with animation events. Is there an alternative to delay
I can use in this situation?
$( document ).ready(function() {
$(".opacity").delay(1000).css({"opacity": ".5",}).delay(1000).css({"opacity": "1",});
});