このsetTimeoutはFirefoxで完全に機能しますが、Chromeでは、アラートを含め、timeoutTrigger関数では何も起こりません。何か案は?
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)