Results 1 to 2 of 2

Thread: Dynamic Ajax Content , some quest...

  1. #1
    Join Date
    Sep 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Dynamic Ajax Content , some quest...

    1) Script Title: Dynamic Ajax Content

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...jaxcontent.htm

    3) Describe problem:
    1) I want to know , How can I add a loading picture
    In this Script.

    2) how can I add any effects , for loading pages In this scripts .


    thanks.
    Bara

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    1 ) Find this function in step 1 from the demo page (only the top part is shown as, that is all we will need to change):

    Code:
    function ajaxpage(url, containerid){
    var page_request = false
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
    try { . . .
    You can add in some code to display a .gif that portrays loading by adding this code:

    Code:
    function ajaxpage(url, containerid){
    document.getElementById(containerid).innerHTML='<table width="100%" height="400"><tr><td valign="middle" align="center"><img src="loading.gif"></td></tr></table>'
    var page_request = false
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
    try { . . .
    You could use an image like so:



    I'm not really sure what you mean by:

    2) how can I add any effects , for loading pages In this scripts .
    On the demo page, it discusses the use of the loadobjs() function. For more advanced effects that require the added content to be initialized, see:

    http://www.dynamicdrive.com/forums/s...ad.php?t=13003
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •