Re: [Proto-Scripty] Re: Progressive update messages from single request

2009-12-12 Thread Alex McAuley
Joe. Are you using ob_gz_handler(); or mod_defalte / mod_gzip ? Also is it a winblows or *nix server Alex Mcauley http://www.thevacancymarket.com - Original Message - From: joe t. thooke...@gmail.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent:

Re: [Proto-Scripty] Re: document.write() vs Element/appendChild()

2009-12-12 Thread Frédéric
On samedi 12 décembre 2009, disccomp wrote: A good reason to get out of the habit of using document.write, is that it is NOT supported by XHTML.[1] [1] http://www.w3.org/MarkUp/2004/xhtml-faq#docwrite When using document.write() in XHTML documents, it clears the entire page and writes the

[Proto-Scripty] Re: File output

2009-12-12 Thread speedpac...@gmail.com
Hi, No need to open a new window - if it starts downloading you'll be left with an empty window ;) Just do an HTTP call to the server and your original page will remain in the window if you have the correct headers going out from your PHP... David On Dec 11, 10:38 pm, bill

Re: [Proto-Scripty] Re: File output

2009-12-12 Thread bill
speedpac...@gmail.com wrote: Hi, No need to open a new window - if it starts downloading you'll be left with an empty window ;) Just do an HTTP call to the server and your original page will remain in the window if you have the correct headers going out from your PHP... Would you be so

[Proto-Scripty] Re: Autocompleter does not work in FireFox 3.5.5

2009-12-12 Thread T.J. Crowder
Just tossing in: Alternately, the script block that has the active part can be placed at the end of the document, so the DOM elements are loaded by the time the browser reaches that script tag. I've never been comfortable relying on that. I've heard people say it, some of them even people who

[Proto-Scripty] Regarding selector engine in prototype.

2009-12-12 Thread pradeep
Hai, i have some questions regarding the selector engine used in prototype. 1) what selector engine does prototype uses currently ? 2)is it better than selector engine like sizzle in jquery since when i compare drag and drop in jquery with prototype- scriptaculous, the jquery based one is

Re: [Proto-Scripty] Re: File output

2009-12-12 Thread bill
speedpac...@gmail.com wrote: Hi, No need to open a new window - if it starts downloading you'll be left with an empty window ;) Just do an HTTP call to the server and your original page will remain in the window if you have the correct headers going out from your PHP... Interestingly

[Proto-Scripty] Re: Progressive update messages from single request

2009-12-12 Thread joe t.
My crude-imentary tests are on my Win7 laptop using Wamp, which means mod_deflate. Work server is Cent, but i don't know whether it's got any compression modules enabled (i've tried with the admin, he slacks). -joe t. On Dec 12, 4:17 am, Alex McAuley webmas...@thecarmarketplace.com wrote: Joe.

[Proto-Scripty] Re: Autocompleter does not work in FireFox 3.5.5

2009-12-12 Thread joe t.
U, right, sure, yeah, of COURSE i saw that... (didn't). i tend to agree with you on [not] placing the active script block at the end of the document and trusting it to work 100% of the time. Like you, i haven't seen any hard data on why NOT to, but just don't fully trust it. i don't see any