jquery-iframe-transport icon indicating copy to clipboard operation
jquery-iframe-transport copied to clipboard

jQuery Ajax transport plugin that supports file uploads through a hidden iframe

Results 23 jquery-iframe-transport issues
Sort by recently updated
recently updated
newest added

It'd be great to have the information on browser support to the README.md. Is this possible to get? Just want to make sure this will fix what I hope it...

In IE9, if the server request threw an exception, the reference to "this.contentWindow.document" at line 182 throws an "Access Denied" runtime exception. (Thank you, Microsoft.) Wrapping the current load function...

In Firefox and Chrome (haven't tried IE), I'm getting a content security policy warning upon calling $.ajax. If I change the content security policy to _unsafe-inline_ on _script-src_, the issue...

For some reason, when I updated to jQuery 1.10, the `jqXHR.responseText` stopped being populated with the text response value from the ajax request. I have no idea why this is,...

Some google-chrome plugin appends html comment before json so plugin didn't work for me. Comment appended is After fix plugin was tested with firefox. Code shows how I've fixed problem...

While IE doesn't support textContent and Firefox doesn't support innerHTML, Chrome supports both but doesn't handle the same each method. I got a bug in Chrome due to Ripple extension...

Does anyone have the same problem? This happens in chrome. The input tag correctly shows the file path and the type logo, but once the iframe-transport script starts running it...

When I try to bind change event to file input: ``` $file = $('') .appendTo('form').change(function(){ that.onFileChange(); }); ``` This works for first upload, but next fail. As I understood, the...

A simple change should enable you to entirely cancel uploads. Instead of appending the proxy form to the document.body, attach it to the iframe's document.body. To abort after submission, simply...

Hi! I used this plugin with jquery 1.6.1, but when I upgraded to 1.7.1 the additional form data was not sent. With blind troubleshooting I found out that the additional...