jQuery: The Write Less, Do More JavaScript Library

Ticket #2209 (closed bug: invalid)

Opened 7 months ago

Last modified 1 day ago

Internet Explorer 6 critical bug with ajax method

Reported by: webmax Assigned to: anonymous
Type: bug Priority: minor
Milestone: 1.2.3 Component: ajax
Version: 1.2.2 Keywords: IE6 bug ajax html
Cc: Needs: Test Case

Description

IE6 bug when big volume data is received using ajax Variable "msg" contains obtained informathion, but method .html doesn't insert it in the page


Example:

$(document).ready(function(){
  $('.headerSearch #search_submit').click(
      function()
      {
        var string = $('.headerSearch #search_field').val();
        if(trim(string).length > 0)
        {
          $('.headerSearch #search_submit').attr('disabled', '1');
          $.ajax({
              type: 'POST',
              url: 'search.php',
              data: 'string=' + string,
              success: function(msg){
        $('.headerSearch #search_submit').removeAttr('disabled');
        $('#page').html(msg);}
                 })
        }
        else
        {
          alert('String is small');
        }
    return false;
    }
  );
});

Attachments

Change History

Changed 5 months ago by adamhadani

Hey, I've tried replicating this bug with increasingly larger ( 1024, 2048, 5096, 10192..) sized buffers as ajax responses and could not reproduce it ( IE v6.0.2800.1106 SP1 as well as Firefox 2.0.0.12 just in case.. ). Is this bug still relevant? could you specify an estimate for the volume of data causing this?

Changed 3 months ago by flesler

  • priority changed from critical to minor
  • need changed from Commit to Test Case

Changed 1 day ago by flesler

  • status changed from new to closed
  • resolution set to invalid
Note: See TracTickets for help on using tickets.