[jQuery] But with the function slideToggle in IE 6 on Windows

2007-07-17 Thread Leandro Vieira Pinho
If I use this function: ... $('fieldset#box').slideToggle('fast',function(){$ ('input#title').focus();}); ... In IE 6 when we give the second click in the element, this browser return an wrong says that it´s impossible to set the focus in an object that isn´t visible. So, all the functions

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
On Jul 18, 4:51 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Don't you like the idea of click on the button, an extension slides out asking to confirm. When you click the confirm extension, you can go ahead with the action. i do, but it breaks two of my rules for this plugin: a) It requires

[jQuery] Re: Behavior Problem

2007-07-17 Thread Stephan Beal
On Jul 18, 4:38 am, Brandon Aaron [EMAIL PROTECTED] wrote: There aren't any yet besides what is in the main source file. There are two main methods: behavior and unbehavior. They are the first two methods in the js file and are commented (along with all the private methods). Here is the

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Stephan Beal
On Jul 18, 2:29 am, Stephan Beal [EMAIL PROTECTED] wrote: Does disabling the element for 500ms sound like a reasonable solution to you? i'm not sure that disable makes much sense for non-buttons, but i think that buttons will make up 90%+ of use cases. ??? A bit of follow-up: i've added

[jQuery] ANNOUNCE: SF jQuery Meetup and Ajax Experience

2007-07-17 Thread John Resig
Hey everyone - Here's some upcoming events in San Francisco, relating to jQuery: SF jQuery Meetup http://upcoming.yahoo.com/event/220122/ On July 26, we are taking the opportunity to invite everyone in the jQuery community to meetup at the Gordon Biersch San Francisco Brewery for drinks

[jQuery] dev tip: poor man's plugin debugging

2007-07-17 Thread Stephan Beal
Hi, all! The past week i've written 4 plugins and i would like to take a moment to share a tip which i've found useful while working on them. In each of my plugin functions i optionally create a debugging area, a DIV element which i use to write debug info to: jQuery.fn.initConfirmer =

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Ganeshji Marwaha
So the briefly disable behaviour is not reliable enough for production use, IMO. Hmmm, just thinking out loud here, did u try attaching a no-op function to window.ondbclick... -GTG On 7/17/07, Stephan Beal [EMAIL PROTECTED] wrote: On Jul 18, 2:29 am, Stephan Beal [EMAIL PROTECTED] wrote:

[jQuery] Re: But with the function slideToggle in IE 6 on Windows

2007-07-17 Thread Ganeshji Marwaha
I am not sure if that would be considered a jquery bug, but i can try to help u with a work around... $('fieldset#box').slideToggle('fast',function(){ if($('input#title').is(:visible)) { $('input#title').focus(); }); untested... but u get the idea. -GTG On 7/17/07, Leandro Vieira Pinho

[jQuery] Re: Announce: Confirmer plugin

2007-07-17 Thread Michael Geary
Now that i think about it, i'm constantly saying to my g/f, don't DOUBLE-click those links! That causes two hits on the server! as if she might someday magically understand what i mean by that. :/ I'll also confirm that my finding the majority of non-hardcore users tend to double-click.

<    1   2