Results 1 to 3 of 3

Thread: How to add a Ajax loading GIF in the ajax content script?

  1. #1
    Join Date
    Mar 2007
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default How to add a Ajax loading GIF in the ajax content script?

    1) Script Title:

    2) Script URL (http://www.dynamicdrive.com/dynamici...xcontent.htm):

    3) Describe problem: Not really a problem, adding ajax loading images

    Any idea, How to add a Ajax loading GIF in the ajax content script?

    I tryed reading other .js file on dynamic drive but i din't find out.

    Thank you

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Try this. In the javascript that goes in the head of the document, find this function:

    Code:
    function loadpage(page_request, containerid){
    if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
    document.getElementById(containerid).innerHTML=page_request.responseText
    }
    and replace it with this:

    Code:
    function loadpage(page_request, containerid){
     if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)) {
    document.getElementById(containerid).innerHTML=page_request.responseText
     }
     
     else {
       document.getElementById(containerid).innerHTML = '<img src="loading.gif"> Loading Content...';
     }
    }
    Change the part in red to your "Loading Message" and the location of the image. Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. #3
    Join Date
    Mar 2007
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Working great
    thank's a lot

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •