Hola a todos amigos como podria hacer levantar una ventana que no vea la barra de herramientas de internet y cuando hago clik derecho no valla atras
gracias :)
| |||
Re: ventana flotante esto solo se puede mediante un pop up y deshabilitando el boton derecho, si gustas y me lo permites buscare los codigos necesarios saludos <iframe marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="http://www.ansiwebs.com/Poexia/index.html" width=468 height=60></iframe> |
| |||
Re: ventana flotante el popup <html> <head> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function popUp(URL) { ventana = window.open(URL, "ventanita", "toolbar=no,scrollbars=no,location=no,statusb ar=no,menubar=no,resizable=no,width=400,height=60& quot;); } </script> </head> <BODY onLoad="javascript:popUp('popup.html')"& gt; </body> </html> <iframe marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="http://www.ansiwebs.com/Poexia/index.html" width=468 height=60></iframe> |
| |||
Re: ventana flotante boton derecho <html> <head> <!-- Copiar dentro del tag HEAD --> <!-- Botón derecho del mouse --> <script LANGUAGE="JavaScript1.1"> <!-- Adaptado por Tk: Compatible con IE y NS --> <!-- Script original enviado por Graciela --> function derecha(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){ alert('Botón derecho inhabilitado') return false; } else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){ alert('Botón derecho inhabilitado') } } document.onmousedown=derecha </script> </head> <body> </body> </html> <iframe marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="http://www.ansiwebs.com/Poexia/index.html" width=468 height=60></iframe> |