+ Reply to Thread
Results 1 to 5 of 5

Thread: load time

  1. #1
    Join Date
    Dec 2004
    Posts
    218

    Default load time

    After installing dynamic listings into each subpage I've noticed that upon first clicking my site it will hang and then immediately load. Is there a way to code it differently so that the rest of the site is loaded while data is retrieved from the MLS?

  2. #2
    Join Date
    Apr 2006
    Posts
    211

    Default Re: load time

    Usually, what causes a page to hang is missing "alt" attributes. The browser cannot construct the page until it figures out how much space the images will take. That may or may not be the problem.

    Otherwise, your server-side code might be taking too much time to execute. If you're using javascript, you're depending upon client-side execution which may not be very consistent either.

  3. #3
    Join Date
    Apr 2006
    Location
    Vancouver, WA
    Posts
    25

    Default Re: load time

    You might look at caching the output of your server-side code so that it doesn't have to re-generate the page with every request.

    P.S. Actually it's the width and height attributes of the <img> tag, not the alt attribute that the browsers use to size images.

  4. #4
    Join Date
    Apr 2006
    Posts
    211

    Default Re: load time

    Oops. My mistake. It's the missing H/W img attributes as Richard says that stall page loading. I must be overworked.

  5. #5
    Join Date
    May 2006
    Posts
    26

    Default Re: load time

    Wow..I have no clue....

+ Reply to Thread

Posting Permissions

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