Tema: buscar un id
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/11/2008, 17:22
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: buscar un id

Probá así:
Código PHP:
<head>
<
script>
onload=function(){
if(!
document.getElementById('pepe')){
alert('no existe el id pepe');
}else{
alert('sí, existe el id pepe');
}
}
</script>
</head>