[jQuery] Re: iPhoto done in JQuery

2008-03-27 Thread kitsched
That's seriously impressive!!! It kind of blew me away... On Mar 26, 7:23 pm, ajk49 <[EMAIL PROTECTED]> wrote: > Check out these three Ajax apps developed almost entirely using JQuery > by Mobyko. They are an iPhoto type photo management tool, a video > management tool and a text management tool.

[jQuery] document.getElementById('elid') != $('#elid') ?

2007-11-25 Thread kitsched
I was trying to populate a select's options when I noticed that I can use: sel = document.getElementById('product_id_01'); sel.options.length = 0; but I can't use: sel = $('#product_id_01'); sel.options.length = 0; If anyone could provide a short explanation I'd be really grateful. Thank you.