[Proto-Scripty] window.js extension

2013-01-09 Thread Henning
Hi all, I have written a small extension for the window.js ( http://prototype-window.xilinus.com/ version 1.3). *What does it do?* It adds an optional hover-function for the minimize, maximize and close buttons. Backward-compatibility is guaranteed. *How do I add this feature for my windows

Re: [Proto-Scripty] multipart/form-data upload via ajax

2013-01-09 Thread fntzr
It not possible, use Flash Uploader for it, for example http://demo.swfupload.org/v220/simpledemo/index.php. But with HTML5\xhr2 it will be possible. http://dev.w3.org/2006/webapi/FileAPI/#FileReader-interface . -- You received this message because you are subscribed to the Google Groups

Re: [Proto-Scripty] multipart/form-data upload via ajax

2013-01-09 Thread Jason Westbrook
It is possible but you have to realize it will only work on browsers that have the FileAPI available - Chrome/Firefox/Safari new Ajax.Request(fileupload.php?filename=myfile,{postBody:$(inputfield).files[0]}); will post the contents of the file to fileupload.php then you can use

Re: [Proto-Scripty] multipart/form-data upload via ajax

2013-01-09 Thread Walter Lee Davis
On Jan 9, 2013, at 3:45 PM, Jason Westbrook wrote: It is possible but you have to realize it will only work on browsers that have the FileAPI available - Chrome/Firefox/Safari new Ajax.Request(fileupload.php?filename=myfile,{postBody:$(inputfield).files[0]}); will post the contents

Re: [Proto-Scripty] multipart/form-data upload via ajax

2013-01-09 Thread Jason Westbrook
Jason Westbrook | T: 313-799-3770 | jwestbr...@gmail.com On Wed, Jan 9, 2013 at 12:55 PM, Walter Lee Davis wa...@wdstudio.comwrote: On Jan 9, 2013, at 3:45 PM, Jason Westbrook wrote: It is possible but you have to realize it will only work on browsers that have the FileAPI available -