This setTimeout works fine in Firefox, but nothing happens in Chrome in timeoutoutTrigger ever, including a warning. Any ideas?
var $this = $('.active-more'); function timeoutTrigger() { $this.closest(".container").nextAll(".container:first").find(".description:first").removeClass('hide'); $this.closest(".container").nextAll(".container:first").find(".back:first").find("img.portfolio").remove(); alert("is this thing on?"); } setTimeout(function(){timeoutTrigger()},400)
javascript google-chrome settimeout
maskedjellybean
source share