Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Yet Another IE "could not be load" problem !
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
keyes  
View profile  
 More options Aug 16 2005, 1:24 pm
From: "keyes" <dung...@gmail.com>
Date: Tue, 16 Aug 2005 17:24:41 -0000
Local: Tues, Aug 16 2005 1:24 pm
Subject: Yet Another IE "could not be load" problem !
http://placelibre.ath.cx/punbb/map.php

I've the classic error "Page could not be load" :-(
I've tried to put the Javascript code just before the <body> tag and
it's work.

But my problem is that i develop a mod for punBB and I can't touch the
header or the footer !
I cannot add a onload attribute to the body tag and I can't put my
Javascript into the footer templates just before </script>.
I've think to use an iframe but XHTML 1.0 strict don't allow to use the
iframe tag.

Any idea ? Please help me !!


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
d_henderson  
View profile  
 More options Aug 16 2005, 3:16 pm
From: "d_henderson" <djndn...@gmail.com>
Date: Tue, 16 Aug 2005 19:16:15 -0000
Local: Tues, Aug 16 2005 3:16 pm
Subject: Re: Yet Another IE "could not be load" problem !
The setTimeout() function lets you schedule a function to be executed
at a later time. This provides for a crude way of executing code after
the page has been rendered. Because your page load time can vary so
much, this may not be 100% reliable.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
keyes  
View profile  
 More options Aug 16 2005, 4:03 pm
From: "keyes" <dung...@gmail.com>
Date: Tue, 16 Aug 2005 20:03:11 -0000
Local: Tues, Aug 16 2005 4:03 pm
Subject: Re: Yet Another IE "could not be load" problem !
That's work ! :-)

Thanks a lot !


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
zeroreality  
View profile  
 More options Aug 16 2005, 4:11 pm
From: "zeroreality" <zeroreal...@gmail.com>
Date: Tue, 16 Aug 2005 13:11:31 -0700
Local: Tues, Aug 16 2005 4:11 pm
Subject: Re: Yet Another IE "could not be load" problem !
you could just do the following which is far more reliable.

window.onload = function() {
// code for your map... or code to initialize the map.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
miken32@gmail.com  
View profile  
 More options Aug 16 2005, 7:33 pm
From: "mike...@gmail.com" <mike...@gmail.com>
Date: Tue, 16 Aug 2005 16:33:39 -0700
Local: Tues, Aug 16 2005 7:33 pm
Subject: Re: Yet Another IE "could not be load" problem !
As the abover poster said, use an event handler to create the map.  You
should never ever have script inside your HTML, especially in onload,
onclick, etc attributes.
And XHTML 1.0 does allow iframes; XHTML 1.0 is HTML 4.0.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
d_henderson  
View profile  
 More options Aug 16 2005, 8:48 pm
From: "d_henderson" <djndn...@gmail.com>
Date: Wed, 17 Aug 2005 00:48:10 -0000
Local: Tues, Aug 16 2005 8:48 pm
Subject: Re: Yet Another IE "could not be load" problem !
Here is an example of a more reliable method. This works even when
there is an onload handler assigned in the body. To see it in action,
put the following in a text file file on your hard disk nameded (e.g.)
test_onload.html and open that file in your browser. IE may need to be
coaxed to run active content off your hard disk (as if that was more
dangerous than running active content off the net).

<html><head><title>On Load tester</title>
<script type="text/javascript">
//<![CDATA[
function onLoad1() {
        alert("This is onLoad1.");

}

if (window.attachEvent) {
        window.attachEvent("onload", function() {
                onLoad1();      // Internet Explorer
        });
} else {

        window.addEventListener("load", function() {
                onLoad1(); // Firefox and others.
        }, false);
}

//]]>
</script>
</head><body></body></html>

If I had a onload handler named in the body element, it would run
first. Then my attached/added handlers will run in the order they were
attached/added.

I tested this in Firefox 1.0.6 and in Internet Explorer 6.0 on a fully
patched Win XP box.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google