Is there a way to include a javascript-loaded advertisement last on the page, but have it positioned in the content? The primary purpose is to keep the javascript ad from slowing down the page load, so if there are other methods to achieve this please do share.
|
feedback
|
|
There is the
I am not sure about the general recommendation about using this attribute though. EDIT: As @David pointed out, use And you can always put the code inside the
But the later approach may pose some problems, you might want to test it out first. More information on this blog post by Dean Edwards, the guy who wrote the famous javascript packer. EDIT: If the size of ad code itself is the problem, you can always defer the loading by combining the above methods with script injection via
So the resulting code might look something like this:
But as I've said, it depends on the specific ad code you get too. Because of the position | |||||||
feedback
|
The above code is a nice way to add a new onload event that doesn't interfere with your existing javascript. Then you can add a new load event to load the advertisements using the code below.
| |||
|
feedback
|
|
I usually put the tag to load script just before the end of body tag. So it loads at the end of the page. This does not give any validation errors or whatsoever. | ||||
|
feedback
|