javascript - font - phonegap
redirigir a appstore o google play (1)
el problema es con su etiqueta de script y usted falta );
y por cierto importaste jQuery ?
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
$(document).ready(function (){
if(navigator.userAgent.toLowerCase().indexOf("android") > -1){
window.location.href = ''http://play.google.com/store/apps/details?id=com.truecaller&hl=en'';
}
if(navigator.userAgent.toLowerCase().indexOf("iphone") > -1){
window.location.href = ''http://itunes.apple.com/lb/app/truecaller-caller-id-number/id448142450?mt=8'';
}
});
</script>
Enviaré a mis clientes el enlace para la aplicación en el siguiente formato
http://goo.gl.com/downloadtheapp (o lo que sea)
Quiero que este archivo esté en algún lugar de mi servidor que incluya un código de script java que compruebe cuál es el tipo de dispositivo y lo redirige a la tienda conveniente. es decir, Google Play si el dispositivo estaba basado en Android y appstore si el dispositivo estaba basado en iOS.
Hasta ahora he intentado esto, pero no funciona.
<html>
<head>
<script type="text/javascript">
$(document).ready(function ()
{
if(navigator.userAgent.toLowerCase().indexOf("android") > -1)
{
window.location.href = ''http://play.google.com/store/apps/details?id=com.truecaller&hl=en'';
}
if(navigator.userAgent.toLowerCase().indexOf("iphone") > -1)
{
window.location.href = ''http://itunes.apple.com/lb/app/truecaller-caller-id-number/id448142450?mt=8'';
}
}
</javascript>
</head>
<body>
</body>
</html>