Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/06/2009, 13:52
dijor69
 
Fecha de Ingreso: marzo-2007
Mensajes: 42
Antigüedad: 17 años, 2 meses
Puntos: 0
Respuesta: ¿Como comprar la resolucion pantalla y poner un valor segun esta?

Cita:
Iniciado por Legoltaz Ver Mensaje
Código JavaScript:
Ver original
  1. <script LANGUAGE="JavaScript">
  2. function ancho() {
  3. var body = document.getElementsByTagName('body')[0];
  4. if(screen.width <= 1024) {
  5. body.style.width = 1200;
  6. }
  7. else{
  8. body.style.width = defecto; // resolución por defecto
  9. }
  10. }
  11. </script>
Mil gracias,