How to load an ajax (jquery) request response progressively without waiting for it to finish?
        Posted  
        
            by Sebastian
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Sebastian
        
        
        
        Published on 2010-05-02T15:45:17Z
        Indexed on 
            2010/05/02
            15:58 UTC
        
        
        Read the original article
        Hit count: 451
        
I want to make a form that will use jquery to submit a list of keyword to a php file, this file could take a lot of time to load depending on the size of the keywords list.
What I want to do is to load the php response into a div or container in real time without using iframes.
All the ajax request I know have to wait until the request has finished before having access to the response, I need to get access to that response even when it hasn't finished so I can update the progress in real time.
© Stack Overflow or respective owner