Ver Mensaje Individual
  #6 (permalink)  
Antiguo 25/04/2015, 04:37
Avatar de satjaen
satjaen
 
Fecha de Ingreso: septiembre-2012
Ubicación: Jaén (Andalucía)
Mensajes: 893
Antigüedad: 12 años, 5 meses
Puntos: 10
Respuesta: Redirección de pc a móvil

A ver si te sirve esto:

Código HTML:
Ver original
  1. <script type="text/javascript">
  2. if (screen.width<800) {
  3. window.location="http://www.ejemplo.es/mobile.php";
  4. }
  5. if (screen.width == 768) {
  6. window.location="http://www.ejemplo.es/mobile-1.php";
  7. }
  8. if ((screen.width == 1024) && (screen.height == 600)){
  9. window.location="http://www.ejemplo.es/mobile-2.php";
  10. }

Un saludo