[jQuery] Re: what editor do you use?

2008-02-13 Thread Kyle Browning
Zend Studio. On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote: aptana studio On Feb 13, 2008 8:49 PM, Mika Tuupola [EMAIL PROTECTED] wrote: On Feb 13, 2008, at 6:38 PM, Feijó wrote: I changed my own a few weeks ago, now I'm using Editpad++

[jQuery] Re: Disappearing events?

2008-02-11 Thread Kyle Browning
Use either the live query plugin OR, reapply the events. The issue is, the events are added once the dom is ready. after that, the functions never get called again. So if you change out elements, your events are gone. Live Query solves this. Kyle On Feb 11, 2008 11:13 AM, Nate [EMAIL PROTECTED]

[jQuery] Re: Test if jquery has loaded

2008-02-07 Thread Kyle Browning
an error saying something like $ has no properties, or $ is not a function. You could try something like this: if (jQuery) { alert(jQuery loaded); } I haven't tested this but don't see why it wouldn't work... HTH Shawn Kyle Browning wrote: $(document).ready(function() { alert('hi

[jQuery] Re: on click event does not response

2008-02-06 Thread Kyle Browning
THe problem is in the order in which things are happening in your script. If you take a look at the livequery plugin this might help. But, you should apply the click after the DOM has been manipulated. Since DOM is parsed in the beginning of the page load, nothing happens when you add / remove

[jQuery] Re: Test if jquery has loaded

2008-02-06 Thread Kyle Browning
$(document).ready(function() { alert('hi'); }); This uses jQuery's .ready function on the document object On Feb 6, 2008 2:41 PM, MikeeBee [EMAIL PROTECTED] wrote: Is there a small piece of code you can put on a page to test if jquery has loaded? Thanks

[jQuery] Re: Tab Effect

2008-01-30 Thread Kyle Browning
Hey no problem, and yea. I think they are moderated On Jan 30, 2008 7:23 AM, studiobl [EMAIL PROTECTED] wrote: Thanks, ocyrus! That helped! ...it does take dismayingly long for posts to show up here. On Jan 29, 1:49 pm, ocyrus [EMAIL PROTECTED] wrote: I recently solved this solution

[jQuery] Re: AJAX file management

2008-01-29 Thread Kyle Browning
http://labs.adobe.com/technologies/air/ Air is free. On Jan 29, 2008 11:39 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks for the link. I notice this goes for $289 for a commercial license. Know anything that's freeware? - Dave On Jan 29, 11:00 am, Glen Lipka [EMAIL PROTECTED]