1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<script type="text/javascript" >
function alerte() {
alert('Salut mon coco');
}
function load() {
document.getElementById("pub").addEventListener("click", alerte, false);
}
</script>
<body onLoad="load();">
<?php include ('include/header.html');?>
<div id="corps">
<!--PUB GOOGLE ADSENCE-->
<div id="pub">
<script type="text/javascript"><!--
google_ad_client = "numeroclient";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "808080";
google_color_text = "808080";
google_color_url = "4C4C4C";
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js" >
</script></div>
<a href="#" onCLick="alerte();" >TEST</a>
</div>
<?php include ('include/footer.html');?>
</body>
</html> |
Partager