posting all code would be crazy but here is relevant snippets.
First the loop I use to iterate ofer an array and write some stuff
into a bunch of DIV elements.
I then want that tho show up someplace on my page. iframe and
document.write displays 500 items basically instantly.
the html() to div element takes about 4 seconds or so in IE7.

    for ( var k = 0; k < v_foundarray.length; k++ ) {
         strHTML += '<div>'+v_foundarray[k] + '</div>';
    }
//window.ifrm.document.open();
//window.ifrm.document.write(strHTML);
//window.ifrm.document.close();

$('div.displayer').html(strHTML);

Reply via email to