473,387 Members | 1,745 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

host's external javascripts disrupt my onload scripts

My web host inserts banner ads into my html pages. The javascript in
these banner ads interferes with the onload triggered javascript
functions in my pages. Whether I trigger my javascript functions
through onload=function() in the body tag or through
window.onload=function name in a script, the host's advertising
javascripts disrupt my javascripts that are supposed to run onload so
that they do not run. I am not able to control the content of the
javascripts my web hosts runs in my pages when ads are inserted in my
pages.

How do I solve this problem?



Javascripts in your advertisements have been disrupting javascripts in
my code that are supposed to trigger "Onload". The ads disrupt my
onload commands whether I put them in the body tag or use
window.onload.

I would like to know what I can do so that my onload javascripts are
not disrupted by the javascript in your ads.
Jul 23 '05 #1
4 2322
David Virgil Hobbs wrote:
My web host inserts banner ads into my html pages. The javascript in
these banner ads interferes with the onload triggered javascript
functions in my pages. Whether I trigger my javascript functions
through onload=function() in the body tag or through
window.onload=function name in a script, the host's advertising
javascripts disrupt my javascripts that are supposed to run onload so
that they do not run. I am not able to control the content of the
javascripts my web hosts runs in my pages when ads are inserted in my
pages.

How do I solve this problem?


put your code inline at the end of your page instead of in the body.onload

HTH

C.
Jul 23 '05 #2
*Colin McKinnon* wrote:
*David Virgil Hobbs* wrote:
My web host inserts banner ads into my html pages. The javascript in
these banner ads interferes with the onload triggered javascript
functions in my pages. Whether I trigger my javascript functions
through onload=function() in the body tag or through
window.onload=function name in a script, the host's advertising
javascripts disrupt my javascripts that are supposed to run onload so
that they do not run. I am not able to control the content of the
javascripts my web hosts runs in my pages when ads are inserted in my
pages.

How do I solve this problem?


put your code inline at the end of your page instead of in the
body.onload


Without testing it I'd assume that the following would help:

if (window.attachEvent) {
window.attachEvent('onload', MyFunction);
}
else if (window.addEventListener) {
window.addEventListener("load", MyFunction, false);
}
else {
window.onload = MyFunction;
}

--
Andrew Urquhart
- FAQ: www.jibbering.com/faq/
- Archive: www.google.com/groups?q=comp.lang.javascript
- My reply address is invalid, see www.andrewu.co.uk/contact/
Jul 23 '05 #3
vi*******@rcn.com (David Virgil Hobbs) wrote in message news:<6e**************************@posting.google. com>...
My web host inserts banner ads into my html pages. The javascript in
these banner ads interferes with the onload triggered javascript
functions in my pages. Whether I trigger my javascript functions
through onload=function() in the body tag or through
window.onload=function name in a script, the host's advertising
javascripts disrupt my javascripts that are supposed to run onload so
that they do not run.
The problem wass that in experimenting with the window.onload=function
name approach in a web page of mine in which the onload javascripts
were being disrupted by the ad code inserted by the web host, I placed
the script containing the window.onload command above the point where
the inserted ad code appears in my page. I did not realize that where
in the page I place the script containing the window.onload command
matters. The script containing the window.onload command in my case
needs to be placed in the code after the point where the inserted ad
code appears in my code and not before the place where the inserted ad
code appears in my code.

I am not able to control the content of the javascripts my web hosts runs in my pages when ads are inserted in my
pages.

How do I solve this problem?



The following words should not have been in the newsgroup post they
were in a letter sent to my web host.
Javascripts in your advertisements have been disrupting javascripts in
my code that are supposed to trigger "Onload". The ads disrupt my
onload commands whether I put them in the body tag or use
window.onload.

I would like to know what I can do so that my onload javascripts are
not disrupted by the javascript in your ads.

After making the post that started this thread, I figured out the
solution. The following code solves the problem, where derf3() is the
function in the onload command in the body tag that is not being
executed due to the javascripts in the ad code inserted by the web
page host.

<script>
function init4()
{
derf3()
}
window.onload = init4;
</script>
I ca'nt help feeling upset that the online sources that explained the
window.onload command, did not bother with explaining that it can
matter where in the code you place the script containing the
window.onload command.
Jul 23 '05 #4
David Virgil Hobbs wrote:
My web host inserts banner ads into my html pages. The javascript in
these banner ads interferes with the onload triggered javascript
functions in my pages. [...]
How do I solve this problem?
Move to another Web space provider. To circumvent the ads and anything
related to them is illegal. The account is for free/cheap because of
the ads.
[...]
Javascripts in your advertisements have been disrupting javascripts in
my code that are supposed to trigger "Onload". The ads disrupt my
onload commands whether I put them in the body tag or use
window.onload.

I would like to know what I can do so that my onload javascripts are
not disrupted by the javascript in your ads.


What's that?
PointedEars
Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John B. | last post by:
In an effort to turn a little more a module with my pages, I would like to turn my internal javascripts into an external javascript files to supply the information onto a web page. I...
4
by: Smoke | last post by:
We had a javascript calling a Cold Fusion page (.cfm) and it was working for 2 years. Suddenly yesterday or today its decided it doesn't want to work anymore. I'm picking up somebody elses code I...
2
by: sdvoranchik | last post by:
We have an application that contains links that run javascripts to create pages in a separate frame. When these links open an external site, it causes the javascripts to no longer function. When...
6
by: daniel kaplan | last post by:
hi all, very new to this (javascript and the likes) so this might range in the dumb cataegory. when i am saving my external javascripts on the same server as all my HTML and Perl, etc scripts,...
2
by: and | last post by:
Hi I have been validating all day most things are cool but I cant get by this problem. One I have listed the script (JAVASCRIPT ) in all the right placesnot a prob but the validator insists...
3
by: jon | last post by:
Hello, I am new to trying to validate this xhtml so I will try to explain as best I can. Ok, I currently have a draft html file which I am trying to validate to a xhtml. Right now I have a couple...
2
by: stroumf | last post by:
Hey, My problem is the following: I need to use functions from different javascripts and I don't want to load all the javascripts initially. So I need to load the scripts on demand. Now I know...
1
by: Memphis Steve | last post by:
Is it possible to combine multiple javascipts into one file and then call that file from a linked URL in the head section of an XHTML file? Here are the two scripts I want to use with the...
29
by: FreshRob | last post by:
I have been trying to fix this issue the whole of today and have gotten no where. I am developing a new website, and wanted it to display a webpage in lightbox and have an external page added to the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.