user1933513
user1933513

Reputation: 25

Use jquery in IE9 downloaded more than 2G file

I use jquery program to download >2G files. It can work only in chrome and firefox browse, IE9 only can download <2G files.

Any way to support all browsers, or lift IE9 limit.

      $(this).attr('src',url)

$(this) is use iframe!

      <iframe id="iFrame" style="display: none"></iframe>

      var url = "/path/"+dl_path;
      $('#iFrame').attr('src', url);

Update If more than 2G, Content-Length is zero, all browsers are same. But firefox does not know the size, also can continue to download over 2G files. chrome can download 3G file,But the size is incorrect!

I'm use lighttpd!How to respond to the correct Content-Length to client side!

thanks!

Upvotes: 0

Views: 123

Answers (1)

Bhushan Firake
Bhushan Firake

Reputation: 9458

You are facing a bug in IE9.It doesn't have any such limit. The limits are 4GB for upload and 17TB for download. You can have more information on this MSDN page.

Upvotes: 2

Related Questions