It works great for me on Android,
The only difference is that im uses it as var, so I can add eventlisteners to it, Example:
mywindow = window.open('http://xxxxxx/hi.php', '_blank', 'location=no');
then u can add events such as exit, for example, you know when this window is closed, otherwise you cannot return to your application:
mywindow.addEventListener('exit', myexitfunc);
# Edit1 : make sure jQuery loads before trying to execute window.open
source share