ajax response truncated

ajax response truncated

I have an ajax post which returns a large html response.  It is getting truncated at 98784 characters everytime.  Is there a limit to a response size or a way around this?
 
Using:  IE7
jQuery 1.4.2
jQuery UI 1.8.1
 
Here is my ajax call:
  1. $.ajax({ url: params,

    error:

    function(XMLHttpRequest, textStatus, errorThrown){alert(textStatus)},

    success:

    function(html){

    endDiv = html.indexOf(

    '/div>')+5;

    html = html.substring(endDiv, 100000);

    html = $.trim(html);

    //

    alert(html.length);

    id =

    'Edit Mapping';

    oDetail.html(html);

    oDetail.dialog(

    'option', 'title', id);

    oDetail.dialog(

    'open');

    },

    data:{},

    dataType:

    'html',

    timeout: 5000

    });

    • Topic Participants

    • les