Vale ya lo tengo ...
Furoya, con el meta que me has enviado:
Código HTML:
<meta name="viewport" content="initial-scale=1.0, user-scalable = no"/>
y el código que estaba utilizando:
Código HTML:
<html>
<head>
<script language="javascript">
function getSize()
{
var width = window.screen.width;
var height = window.screen.height;
document.write("Width: " + width + " Height: " + height);
}
setTimeout(getSize(), 200);
</script>
</head>
<body style="font-size:200%;"></body>
</html>
Es decir ... este código me da el width:320 y height:401 que es la resolución del telefono :
Código HTML:
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable = no"/>
<script language="javascript">
function getSize()
{
var width = window.screen.width;
var height = window.screen.height;
document.write("Width: " + width + " Height: " + height);
}
setTimeout(getSize(), 200);
</script>
</head>
<body style="font-size:200%;"></body>
</html>
Muchas gracias :)