Basic javascript question

I’m a newbie at javascript but I know CSS and Html. What do I need to do to get this code for banner to display on the site? I copied and pasted it but it doesn’t show. I’m imaging I need some kind of js code in the header?

The code:

<script type="text/javascript" src="http://lovealocalbusiness.intuit.com/widgets/ad_234x189.js?business_id=22836"></script>

It’s for this page. It has a ton of js on there already.

Thanks much!

I’d try placing it inside the <body> tag somewhere, where you want it to appear. Since its just writing something out, you place it where you want it I think. If you put it in the <head></head> it wont show up.

The JS file does a document.write

document.write('<iframe src="http://lovealocalbusiness.intuit.com/widgets/ad_234x189.html" width="234" height="189" frameborder="0"></iframe>');

Which displays this page in an iframe

http://lovealocalbusiness.intuit.com/widgets/ad_234x189.html

Thanks. Yeah, I did that (pasted it in body where I wanted it) and it wouldn’t work at first. I kept trying and just copying and pasting the code and it finally worked. Very strange why it wouldn’t work the first several times I tried.

Thanks again!