Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6781177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:35:37+00:00 2026-05-26T16:35:37+00:00

I’ve got a situation that has turned my mind to mush and could use

  • 0

I’ve got a situation that has turned my mind to mush and could use some real help.

I’m pulling in an ad from Google’s ad management system, Doubleclick For Publishers (DFP), using this code:

<script type='text/javascript'>
    GA_googleFillSlot("TEST_960x300");
</script>

Apparently Google auto-generates a DIV around said ad. I’m detecting if an ad exists (therefore above DIV) with this:

<script type='text/javascript'>

if(document.getElementById('google_ads_div_TEST_960x300_ad_container')){
    document.getElementById('google_ads_div_TEST_960x300_ad_container').setAttribute("class", "billboard");
}

//For IE since it seems DFP outputs a different div for IE.
if(document.getElementById('google_ads_div_TEST_960x300')){
    document.getElementById('google_ads_div_TEST_960x300').setAttribute("class", "billboard");
}

</script>

When an ad is present I need to put the following line inside this elusive DIV element

<input type="image" id="expand_button" src="test_btn_expand.png" />

which will show a button on top of the ad allowing a user to shrink/expand the ad with said button. Everything is working like a champ but I cannot figure out how to get the above button inside Google’s DIV.

Any thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T16:35:37+00:00Added an answer on May 26, 2026 at 4:35 pm

    There is more than one way to do that.

    First, you can edit the contents of any element by using .innerHTML, however be aware that this is destructive – it removes the old contents and adds the new contents, even if you use innerHTML += ''. That is probably bad in your case because if the contents contain an iframe it may load it again, and if any properties/events have been added to any of the elements inside the container, they will be destroyed.

    Example:

    var el = document.getElementById('google_ads_div_TEST_960x300_ad_container');
    el.innerHTML += '<input type="image" id="expand_button" src="test_btn_expand.png" />';
    

    Second, you can append a newly created element instead of editing the whole innerHTML.

    The following code uses appendChild to add a new element. It is less pretty but non-destructive:

    var el = document.getElementById('google_ads_div_TEST_960x300_ad_container');
    var input = document.createElement("input");
    input.type = "image";
    input.id = "expand_button";
    input.src = "test_btn_expand.png";
    el.appendChild(input);
    

    JQuery can append an element in a prettier way:

    $('#google_ads_div_TEST_960x300_ad_container').append(
        '<input type="image" id="expand_button" src="test_btn_expand.png" />'
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.