Results 1 to 2 of 2

Thread: Page Preloader?

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

    Default Page Preloader?

    I was wondering if there was a page preloader, not a image preloader but a preloader for the WHOLE page not for 1-2 images, i need it for my PHP portal because it takes a few to load it all. Thank u.

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    You wish to preload the HTML of the page, yes?

    You could try:
    Code:
    <script type="text/javascript">
      function getHttpRequest() {
        if(window.xhr) return window.xhr;
        if(typeof ActiveXObject == "undefined" && typeof window.XMLHttpRequest == "undefined") return null;
        var xmlhttp;
        /*@cc_on
          @if (@_jscript_version >= 5) {
            try {
              xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
            } catch (e) {
              try {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
              } catch (E) {
                xmlhttp = false;
              }
            }
          }
          @else xmlhttp = null;
        @end @*/
    
        if (xmlhttp == null && typeof window.XMLHttpRequest != 'undefined')
          try {
            xmlhttp = new window.XMLHttpRequest();
          } catch (e) {
            xmlhttp = null;
          }
        return (window.xhr = xmlhttp);
      }
    
      var x = getHttpRequest();
      x.open('GET', 'portal.php', false);
      x.send(null);
    </script>
    That may or may not work, I'm not too sure
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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
  •