Hello, I have an issue with the Android platform regarding fixed headers and popups and I know there is a fix in a commit made. However , I do not know how to apply this fix to my version. And I'm using the packaged version , not the live build.
Hello , I am working on a windows phone 7 app using jquery mobile and phonegap.
I realised window.location.href/replace(....) do not work in WP7 and i know I can atleast replace window.location.href with jquery mobiles page change implementation BUT what if I want to have a javascript to call someone.
My current code goes something like this:
window.location.href="tel:"+telephoneNumber
I know another way is to dynamically create a link and triggering a click on it , but don't want to touch the page content and I already have IOS , Android and blackberry and so it will be a lot of work when I want to make changes.
Im using jquery mobile 1.2.0.min and jquery 1.7.2 and i also just tried the jquery 1.8.2 version and still got the same problem.
I have tested my app in Android 4.0.4 and IOS6 , Xoom tablet and iphone 4 specificially.
On any page , whenever I finish typing something and press the return button , it does not close the keyboard.
I have tried .blur() , .focus() on another element , $('input').blur() , a chain of .blur() .focus() .blur() and they all do not work.
In fact , .focus() on an element does not even open a keyboard when tested.
I have no idea why , but all online solutions I tried have not work.
I do have a partial solution for Android which is opening and closing a select menu programmitically to close the keyboard but it does not work for IOS if you are on another page.
I need advice on why this is happening and even better , a solution.