[jQuery] Re: What does "Unobtrusive Javascript" mean?

2007-08-16 Thread cdomigan
I would agree with Michael Geary. My understanding of Unobtrusive Javascript is keeping a clean separation of content, presentation and behaviours.

[jQuery] Re: Stopping a $.load call

2007-07-18 Thread cdomigan
I would have to agree with Strija. Using a setTimeout() is the way I've seen 99% of auto-complete widgets implemented. Chris On Jul 19, 10:14 am, batobin <[EMAIL PROTECTED]> wrote: > Very interesting idea. So, if I understand you correctly, an AJAX > request is only made if a person stops typing

[jQuery] Re: License questions

2007-07-18 Thread cdomigan
MIT license is what you want - just include the copyright notice and your away laughing. Chris

[jQuery] Re: ContextMenu plugin r2 released!

2007-07-16 Thread cdomigan
s a great idea. Nefarious > > websites could re-use your code to exploit people. > > I understand this is a grey area and I'm not having a go at anyone, > just wondering about the topic. > > pd > > On Jul 16, 1:05 pm, cdomigan <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: ContextMenu plugin r2 released!

2007-07-15 Thread cdomigan
from happening -- so that arrow keys > don't take focus away from all of the items. > > Keep up the great work! > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jul 15, 2007, at 11:05 PM, cdomigan wrote: > > > &g

[jQuery] ContextMenu plugin r2 released!

2007-07-15 Thread cdomigan
Version r2 of the ContextMenu plugin has been released. ContextMenu is a lightweight jQuery plugin that lets you selectively override the browser's right-click menu with a custom one of your own. You can download it here: http://www.trendskitchens.co.nz/jquery/contextmenu/ ContextMenu is now tr

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-06-05 Thread cdomigan
Can I just say that I've started using Jquery 1.1.3a with Ext and it's a HUGE improvement. Most bugs are gone and animations are smooth as silk - thanks to everyone behind this release! Chris

[jQuery] Re: jQuery and EXT not working at all

2007-04-17 Thread cdomigan
In the latest releases of Ext, the jquery and dimensions files are already included in ext/adapter/jquery/jquery-plugins.js

[jQuery] Interface: Speed of SortableDestroy()

2007-04-17 Thread cdomigan
Hi there I'm using Sortables on a calendar application. Each day on the month calendar is a "drop" container, and in each day there and between 0 and 12 "draggable" items. I have navigation that clicks me from one month to the next, and in order to keep performance (as the navigation is using aja

[jQuery] Re: Form plugin: file upload question

2007-04-16 Thread cdomigan
And by the way, thanks so much for this plugin Mike. It's the best thing since sliced bread, even that really really tasty bread - the stuff with big seeds in it. M

[jQuery] Re: Form plugin: file upload question

2007-04-16 Thread cdomigan
Whoopsy For future reference - when wanting functionality from the 0.96 version of the Form plugin, make sure NOT to include the 0.91 version... Sorry everyone! :)

[jQuery] Re: Form plugin: file upload question

2007-04-16 Thread cdomigan
I'm having the same problem. The value (ie the path) in the file field is passed to my server, but my $_FILES array is empty! Any ideas? On Apr 3, 4:30 am, Kush Murod <[EMAIL PROTECTED]> wrote: > Thanks Mike, I still had old form script included down below, my bad :) > > Mike Alsup wrote: > > >>

[jQuery] $(document).ready() in ajax content.

2007-04-04 Thread cdomigan
Hi everyone, I'm doing something like this: $("#myDiv").load("/foo/bar.php"); Now I understand .load() evaluates script tags - are these evaluated after the content has been added to the dom? I did have $ (document).ready() calls in my attached script, but it occurred to me that there is probab

[jQuery] Re: low hanging newbie fruit for you to snack on

2007-04-03 Thread cdomigan
Howdy! Here's my take on some of your questions: > Is there a way to specify multiple conditions in one $ call or I must > do $("img.class").add("a.class"). Anything like $("img.class| > a.class")? A comma should do the trick: $("img.class, a.class") > How much overhead is there in a $ object

[jQuery] Re: Help to improve code

2007-04-01 Thread cdomigan
Looks great! A link to the js file would be handy. Chris

[jQuery] Re: Using jQuery with Ext

2007-04-01 Thread cdomigan
Or you could use an iframe and set it's src attribute.