CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 31 Aug 2025 02:35:09 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100226160109
location: https://web.archive.org/web/20100226160109/https://github.com/arian/iFrameFormRequest
server-timing: captures_list;dur=0.721042, exclusion.robots;dur=0.032599, exclusion.robots.policy;dur=0.018353, esindex;dur=0.012164, cdx.remote;dur=12.938421, LoadShardBlock;dur=243.187888, PetaboxLoader3.datanode;dur=84.322231, PetaboxLoader3.resolve;dur=58.655351
x-app-server: wwwb-app202
x-ts: 302
x-tr: 286
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app202; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 31 Aug 2025 02:35:10 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 26 Feb 2010 16:01:04 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "0c3f580b6a7f000a9841ff17e317a7d4"
x-archive-orig-x-runtime: 96ms
x-archive-orig-content-length: 21585
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 26 Feb 2010 16:01:09 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Feb 2010 16:01:09 GMT", ; rel="memento"; datetime="Fri, 26 Feb 2010 16:01:09 GMT", ; rel="next memento"; datetime="Thu, 25 Mar 2010 03:47:38 GMT", ; rel="last memento"; datetime="Tue, 17 Nov 2020 14:54:24 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100226115806_crawl102-c/51_14_20100226154002_crawl101.arc.gz
server-timing: captures_list;dur=0.698985, exclusion.robots;dur=0.034370, exclusion.robots.policy;dur=0.020228, esindex;dur=0.013360, cdx.remote;dur=21.195130, LoadShardBlock;dur=547.993917, PetaboxLoader3.datanode;dur=256.693387, PetaboxLoader3.resolve;dur=94.017948, load_resource;dur=236.733659
x-app-server: wwwb-app202
x-ts: 200
x-tr: 870
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
arian's iFrameFormRequest at master - GitHub
This service is courtesy of Pledgie.
arian / iFrameFormRequest
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
iFrameFormRequest is a MooTools plug-in that can upload files the Ajax way — Read more
name | age | message | |
---|---|---|---|
![]() |
Docs/ | Wed Dec 16 12:32:31 -0800 2009 | Add screenshot [arian] |
![]() |
README.md | Wed Dec 16 12:35:20 -0800 2009 | Add screenshot to the README.md [arian] |
![]() |
Source/ | Wed Dec 16 12:04:25 -0800 2009 | Add the js iFrameFormRequest file [arian] |
![]() |
package.yml | Wed Dec 16 12:20:24 -0800 2009 | - Add demo link - Fix README.md markup [arian] |
README.md
iFrameFormRequest
This class gives you a method to upload files 'the ajax way'. Attach the iFrameFormMethod to any form tag and you can upload files
How to use
#JS
var iFrame = new iFrameFormRequest(document.getElement('form'),{
onRequest: function(){
document.id('debug').set('text','start');
},
onComplete: function(response){
document.id('debug').set('html',response);
}
});
Or you can use it this way:
#JS
document.getElement('form').iFrameFormRequest({
onRequest: function(){
document.id('debug').set('text','start');
},
onComplete: function(response){
document.id('debug').set('html',response);
}
});
And the HTML
#HTML
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
<input type="submit" value="uploadAjax" />
</form>
<div id="debug"></div>