para cerrar un pop-up o ventana emergente solo necesitas pegar esto:
<a href=”javascript:window.close();”>close this Pop-Up </a>
only need paste this code inside your pop up.
para cerrar un pop-up o ventana emergente solo necesitas pegar esto:
<a href=”javascript:window.close();”>close this Pop-Up </a>
only need paste this code inside your pop up.
<script type=”text/JavaScript”>
function newPopUp (URL){
window.open(URL,”window”,”width=400, height=300, scrollbars=no, menubar=no, location=no, resizable=yes”)
}
</script>
copiar y pegar entre <header> y </header> y luego llamar desde un link en la parte de tu pagina en la que desees con el siguiente link: <a href=”javascript:newPopUp (‘pop_up.html’)”>open Pop Up</a>
copy and paste inside <header> and </header> and call into your page with this link :<a href=”javascript:newPopUp (‘pop_up.html’)”>open Pop Up</a>