[jQuery] Re: Double right-click, anyone?

2008-12-02 Thread TheBlueSky
>         } else { >                 totalClicks++; >         } > > > > }); > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of TheBlueSky > Sent: Saturday, November 29, 2008 6:21 AM > To: jQuery (English) >

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
gt; > > To: jQuery (English) > > > Subject: [jQuery] Re: Double right-click, anyone? > > > > I didn't test it in IE... no cookie. > > > > Apparently the 'mousedown' event was at random not carrying the > > > property that tells us wh

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
to false when the > double click happened. Check out the new version: > > http://jsbin.com/iyegu/ > > cheers, > - ricardo > > On Nov 30, 8:32 am, TheBlueSky <[EMAIL PROTECTED]> wrote: > > I forgot to mention also that I disabled the context menu with the >

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread TheBlueSky
mouseup and it seems to work fine, I also had > forgotten to clear the timeout and set the var to false when the > double click happened. Check out the new version: > > http://jsbin.com/iyegu/ > > cheers, > - ricardo > > On Nov 30, 8:32 am, TheBlueSky <[EMAIL PROTECTED]

[jQuery] Re: Double right-click, anyone?

2008-11-30 Thread TheBlueSky
x27;s because in IE the double-click event won't fire until the time out duration finishes and in FF it's the opposite, i.e. the event won't fire after the time out duration! On Nov 30, 2:10 pm, TheBlueSky <[EMAIL PROTECTED]> wrote: > Thanks for the code... but I couldn'

[jQuery] Re: Doing Ajax call to a page that requires authentication

2008-11-30 Thread TheBlueSky
a script tag is inserted and the content is > > "read" that way. > > > Karl Rudd > > > On Sat, Nov 29, 2008 at 11:17 PM, TheBlueSky <[EMAIL PROTECTED]> wrote: > > >> Oh, sorry, my mistake! Yes, it's on another domain and I've just noted

[jQuery] Re: Double right-click, anyone?

2008-11-30 Thread TheBlueSky
k!'); >        } else { >            t.data('rightclicked',true); >            setTimeout((function(t){ return function(){ t.data > ('rightclicked',false); } })(t), 300); >        }; >    }; > > }); > > - ricardo > > On Nov 29, 10:20 am, TheBlueSky

[jQuery] Double right-click, anyone?

2008-11-29 Thread TheBlueSky
Hi everyone, Does anyone has code, implementation, plug-in or whatever to detect double right-click? I'm searching and trying for couple of days now without any result. Appreciate any help.

[jQuery] Re: Doing Ajax call to a page that requires authentication

2008-11-29 Thread TheBlueSky
hat's the only thing I can think of. > > Karl Rudd > > > > On Thu, Nov 27, 2008 at 9:20 PM, TheBlueSky <[EMAIL PROTECTED]> wrote: > > > Thanks for your reply. > > > Sorry that my question wasn't clear enough; I already tried using the > > u

[jQuery] Re: Doing Ajax call to a page that requires authentication

2008-11-27 Thread TheBlueSky
; > > If the authentification is based on .htaccess, you can use username/password > option > > Pierre > > W. C. Fields  - "I cook with wine, sometimes I even add it to the food." > > 2008/11/25 TheBlueSky <[EMAIL PROTECTED]> > > > > &g

[jQuery] Re: Pulling images dynamically from a folder.

2008-11-25 Thread TheBlueSky
As per my understanding, you want jQuery to read a folder on your server and extract all the images there, right? If so, I don't think it's possible. jQuery is client-side scripting platform (JavaScript) and it runs on your browser not your server. Yes, you may integrate it with serer-side script

[jQuery] Doing Ajax call to a page that requires authentication

2008-11-25 Thread TheBlueSky
Hi everyone, How can I send login credentials with jQuery Ajax request (get(), post () or ajax()) when the page I'm requesting is asking for them before permitting the access. Note here that I'm not talking here about form-based authentication. Thanks in advance.