Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a "button" I've created inside of the element. It is a simple path that detects if you're in it, and if you've clicked it or have your finger on it. If you do, it executes:

window.open("http://www.google.com");

It works great in the browser, but I've tested it on an iPad, Android(2.2) phone, and Android Tablet (3.2) and it will not open a new window.

Here is a jsfiddle I put together demonstrating this:

With Code: http://jsfiddle.net/JgrU4/

Just the Result: http://jsfiddle.net/JgrU4/embedded/result/

Any ideas on how I might accomplish this?

share|improve this question

1 Answer

up vote 1 down vote accepted

Oddly enough, it seems to work if you give it a size..

var windowSize = "width=" + window.innerWidth + ",height=" + window.innerHeight + ",scrollbars=no";
window.open('http://www.google.com', 'popup', windowSize);

Tested on iOS and Android.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.