Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/06/2009, 06:56
Avatar de Legoltaz
Legoltaz
 
Fecha de Ingreso: agosto-2008
Mensajes: 325
Antigüedad: 16 años, 7 meses
Puntos: 6
Respuesta: ¿Como comprar la resolucion pantalla y poner un valor segun esta?

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>

Última edición por Legoltaz; 09/06/2009 a las 07:28