Comments on: jQuery ‘delay’ plugin https://j11y.io/snippets/jquery-delay-plugin/ Sun, 22 Mar 2015 15:39:22 +0000 hourly 1 https://wordpress.org/?v=5.0.13 By: Sergey https://j11y.io/snippets/jquery-delay-plugin/#comment-473 Thu, 15 Oct 2009 10:31:48 +0000 https://j11y.io/?p=414#comment-473 confirm. not working in FF. any solution ?

]]>
By: Steve https://j11y.io/snippets/jquery-delay-plugin/#comment-472 Mon, 05 Oct 2009 13:08:46 +0000 https://j11y.io/?p=414#comment-472 Doesn’t work with the latest version of firefox unfortunately

]]>
By: ubermajestix https://j11y.io/snippets/jquery-delay-plugin/#comment-471 Tue, 29 Sep 2009 02:46:33 +0000 https://j11y.io/?p=414#comment-471 Thanks for the nice little plugin! Great documentation too.

]]>
By: JSD https://j11y.io/snippets/jquery-delay-plugin/#comment-470 Sun, 16 Aug 2009 20:29:49 +0000 https://j11y.io/?p=414#comment-470 here’s a question..

say you have the delay inside a mouseleave event. how do you clear the delay from being triggered on a mouseenter event? as in, say you have a delay on mouseleave and then mouseenter the div again but with the way the plugin is setup now… it still hides it..

]]>
By: Chris Moguel https://j11y.io/snippets/jquery-delay-plugin/#comment-469 Thu, 02 Jul 2009 23:15:27 +0000 https://j11y.io/?p=414#comment-469 Works Perfectly! Great Job. Just what i was looking for.

]]>
By: The Frosty @WPCult https://j11y.io/snippets/jquery-delay-plugin/#comment-468 Fri, 15 May 2009 19:42:44 +0000 https://j11y.io/?p=414#comment-468 Sweet, just what I was looking for. Will put a link in my source code to an upcoming WordPress theme release.

]]>
By: Sanbor https://j11y.io/snippets/jquery-delay-plugin/#comment-467 Mon, 09 Mar 2009 13:42:34 +0000 https://j11y.io/?p=414#comment-467 James, this plugin is very useful, but i find a serious bug, but may it’s a problem of jQuery.
I have a empty #notice div to put messages inside.
I have links at the left of checkboxes to edit each element of the list.
<a title=”Edit” href=”http://localhost/app/edit/8″>
So each link without js works to edit each element.
If JS is on, when i click these link select the checbox of the element asignated on his href.

I have another links (with the same class .action) to edit all the selected checboxes.
If are no checboxes selected, shows an alert.

$("a.action").click(function() {
	var id = /[0-9]+$/.exec(this.href);
	var action = /edit|remove/.exec(this.href)[0];
	if (id != null)
		$("#item-selected-" + id[0]).attr('checked',true);
 
	if (id == null && $(":checkbox").is(':checked') == false)
	{
		$('#notice').hide('fast').html('Alert!').show('slow').delay(5000).hide('slow');
		return false;
	}
}

Well, the problem is that when the alert meesage still visible (before the end of the delay), the another links don’t work well. It’s like the variable id isn’t assignated.
I think that is because jQuery is not asynchronous and if the delay code don’t end, can’t run the another code.
Sorry for my english, and thanks for your time!

]]>
By: Evan Byrne https://j11y.io/snippets/jquery-delay-plugin/#comment-466 Mon, 16 Feb 2009 19:57:24 +0000 https://j11y.io/?p=414#comment-466 Hey, Mike. I was surprised when I saw your comment in my mailbox. Actually I wasn’t aware that my plugin didn’t work with jQuery 1.3, I just haven’t tried to use it on it yet.

I should probably refer users over here for Jame’s updated version.

]]>
By: Mike https://j11y.io/snippets/jquery-delay-plugin/#comment-465 Mon, 16 Feb 2009 19:28:07 +0000 https://j11y.io/?p=414#comment-465 Thank you very much! Nice work.
P.S. Some time ago I’ve used a delay plugin from EvanBot.com, but with jQuery 1.3 it doesn’t work.

]]>
By: MaLiang https://j11y.io/snippets/jquery-delay-plugin/#comment-464 Wed, 04 Feb 2009 09:19:54 +0000 https://j11y.io/?p=414#comment-464 Oh, Thanks!

]]>