[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread eagleon
Does anyone have any experience using AJAX with FTP (not directly, but using server-side scripting?) On Feb 27, 8:03 am, Joseph Le Brech wrote: > try and use ocupload that's worked a treat for me in the past. > > > > > Date: Fri, 27 Feb 2009 04:09:48 -0800 > > Subject: [jQuery] Re: AJAX File Upl

[jQuery] Re: load() not loading my dynamic page

2009-02-25 Thread eagleon
y.com/Ajax/load#urldatacallback > > On Wed, Feb 25, 2009 at 3:16 PM, eagleon wrote: > > > one more thing following the above, ... if I check to see if the > > dynamically loaded div exists, it does not.. > > > if ( $("#existing_static_div").length > 0

[jQuery] Re: load() not loading my dynamic page

2009-02-25 Thread eagleon
ver, it seems that #mydiv technically does not exist Here is the funny thing.. this only happens with the document ready() event or load() event... if I attach this to a resize() event for example, it works fine when I resize the window... nt On Feb 25, 2:59 pm, eagleon wrote: > Code Daem

[jQuery] Re: load() not loading my dynamic page

2009-02-25 Thread eagleon
> > >> > > On Feb 18, 10:56 pm, Code Daemon wrote: > >> > >> It appears that things work fine in IE, just not Firefox. Very > >> > >> strange. > > >> > >> On Feb 5, 6:56 am, jQuery Lover wrote: > > >&g

[jQuery] Re: load() not loading my dynamic page

2009-02-05 Thread eagleon
I've been experiencing the same thing! I hop we can figure out a workaround... This also applies to the $(document).ready() event... does not work on dynamic pages. On Feb 5, 3:21 am, Code Daemon wrote: > But $('#mydiv').load('my/page.html');    works just fine. > > On Feb 5, 12:16 am, Dea

[jQuery] Re: $.css() onload

2009-02-04 Thread eagleon
b 3, 4:47 pm, kim3er wrote: > > > > $(document).ready() fires when the document has finished loading. It > > > is generally appropirate to attach any onload code to that event. If > > > you need to attach code to the window load event, do so at the top of >

[jQuery] Re: $.css() onload

2009-02-03 Thread eagleon
actually.. i noticed something! I need to have assigned the values for the target element in css prior to it being altered onload. Can it be set onload without being specified at all? On Feb 3, 5:52 pm, eagleon wrote: > Thank you kim3er and MorningZ, I truly appreciate the help! > > On

[jQuery] Re: $.css() onload

2009-02-03 Thread eagleon
gt; > > $(document).ready() fires when the document has finished loading. It > > is generally appropirate to attach any onload code to that event. If > > you need to attach code to the window load event, do so at the top of > > the page before the page has started rendering

[jQuery] Re: $.css() onload

2009-02-03 Thread eagleon
thanks for the reply, I got it to work without the $(window).load () ... but just to learn, where does this belong then? On Feb 3, 4:26 pm, MorningZ wrote: > Don't put > > $(window).load() > > inside > > $(document).ready() > > On Feb 3, 4:12 pm, eagleon w

[jQuery] $.css() onload

2009-02-03 Thread eagleon
Hi Guys, I was trying to fire an $.css() during the onload event. For some reason, it does not work. It works fine if I attach it to another event such as a resize event, but not onload. This is what I have done: Code: [code] function myFunc() { $("#example").css({'width' : 10px;}); }