Jump to content

Flash banner does not show


raydona

Recommended Posts

Hi,

  Please bear with me as I've never worked with Flash before. I wish to include a Flash banner in my web page that is a link to another web site. The other web site has provided the code for the Flash banner link as:

<script language="JavaScript" src="http://www.************************"></script>
<noscript><iframe src="http://www.********************&iframe=1" width=468 height=60 frameborder=0 border=0 scrolling=no marginheight=0 marginwidth=0></iframe></noscript>

When I include the code inbetween <head></head> or between <body></body> nothing happens. I wonder why the banner is not showing? Do I have to alter the code or include something in my HTML code? I'd be

very grateful for all help.

Link to comment
https://forums.phpfreaks.com/topic/215970-flash-banner-does-not-show/
Share on other sites

The script here:

 

<script language="JavaScript" src="http://www.************************"></script>
<noscript><iframe src="http://www.********************&iframe=1" width=468 height=60 frameborder=0 border=0 scrolling=no marginheight=0 marginwidth=0></iframe></noscript>

 

 

States that if your javascript is disabled then issue the .swf in the <noscript> tag. That being said this needs to be placed within the <body> tag. That way the <iframe> tag actually get's printed. To make the flash display remove everything thing except.

 

<iframe src="http://www.********************&iframe=1" width=468 height=60 frameborder=0 border=0 scrolling=no marginheight=0 marginwidth=0></iframe>

 

Now place that in the <body> tag to view the header. To test what you have now you must disable your javascript and place the original code they provided in the <body> tag.

Also it would be helpful if I could see the javascript code. If nothing I listed works please let me know because there are a lot of other things it could be.

Thanks,

Colton Wagner

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.