2

this div add to source of my web page after loading. can i use some code to hide or remove that?

<div style="border-right: #c6c8ca 1px solid; border-top: #c6c8ca 1px solid; left: 0px;z-index: 4000; border-left: #c6c8ca 1px solid; width: 485px; border-bottom: #c6c8ca 1px solid;position: absolute; top: 0px; height: 60px; background-color: #e9e9e9" id="divADV">
<table border="0" cellpadding="0" cellspacing="0" width="485">
    <tbody>
        <tr>
            <td style="width:468px" id="tdAdv">
                <iframe id="a3b67f12" name="a3b67f12" src="http://ads.adsready.com/www/delivery/afr.php?zoneid=9&amp;target=_blank" scrolling="no" style="z-index:4000; width:468px; height:60px; margin:0" allowtransparency="true" frameborder="0">
                    <a href="http://ads.adsready.com/www/delivery/ck.php?n=a8fcf057" target="_blank"><img src="http://ads.adsready.com/www/delivery/avw.php?zoneid=9&amp;n=a8fcf057" border="0" />
                    </a>
                </iframe>
                <iframe style="width:1px; height:1px; margin:0; visibility:hidden;" src="http://persianbox.com/s.aspx?pscn=2&amp;pscr=moured.persianblog.ir&amp;psct=&amp;psep=1" scrolling="no" target="_top" frameborder="0"></iframe>
            </td>
            <td style="width:16px; text-align:center; vertical-align:top"><img alt="close" src="http://persianbox.com/close.gif" id="imgClose" onclick="javascript:closeWindow();" style="cursor: hand">
            </td>
        </tr>
    </tbody>
</table>

jbg
  • 476
  • 2
  • 9
Nastaran
  • 25
  • 1
  • 1
  • 6

2 Answers2

3

with Jquery:

$("#divADV").hide()

or with plain javascript:

document.getElementById(divADV).style.display = 'none';

but you're better off just doing this in css:

#divADV{
   display: none;
}
jmore009
  • 12,863
  • 1
  • 19
  • 34
2

Here your targer div will hide after 3 second. you can set it 2 or 1 sec or set 0 to hide just after loading by changing the value

$(document).ready(function() {
    $('#targetDiv').delay(3000).hide();
});
Ahmad Sharif
  • 4,141
  • 5
  • 37
  • 49