[jQuery] Re: Problems with Selectable Plugin

2007-05-20 Thread Richard Worth
On 5/20/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: I have seven selectables on my page. Only the first is reacting... the code: http://rafb.net/p/uYWmsK65.nln.html I'm not sure what the source of the problem is, but it looks like a dependency issue. When running interface.all.js it wo

[jQuery] Re: what's the best way to write this small function

2007-05-20 Thread Richard Worth
On 5/20/07, bingo <[EMAIL PROTECTED]> wrote: jQuery.fn.customLoad = function(url){ return $(this).ajaxStart(function(){ $(this).html(""); $(this).load(url); }); }; As you can see, I am just trying o

[jQuery] Re: newbie question: keypress vs keydown

2007-05-21 Thread Richard Worth
On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: Hi, Is there a difference between to two? Any guidelines on which one to use on a certion situation? There are three javascript events that can fire when a key is pressed: keydown keyup keypress Here's a great reference for figuring out wha

[jQuery] Re: newbie question: keypress vs keydown

2007-05-21 Thread Richard Worth
On 5/21/07, Richard Worth <[EMAIL PROTECTED]> wrote: On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: > > > Hi, > > Is there a difference between to two? Any guidelines on which one to > use on a certion situation? > > There are three javascript events

[jQuery] Re: A problem with interfaces draggables

2007-05-22 Thread Richard Worth
On 5/22/07, chrs <[EMAIL PROTECTED]> wrote: Has anyone any idea how to solve this? I could set a demo somewhere online to show what I mean if someone wants that. That would help, as your figure didn't stay intact (lines wrapped at around 70 chars). - Richard D. Worth

[jQuery] Re: jquery.validation and ajax

2007-05-22 Thread Richard Worth
On 5/22/07, daweb <[EMAIL PROTECTED]> wrote: ... $('#successDiv').fadeIn('slow'); } }), $("#form_inserisci_commento").validate({ ... I don't know if this is the problem, but the first thing that jumps out to me is the comma ( , ) above should be a semi-colon ( ; ). - R