Invisible jQuery Mobile Popup issue on Android -




have issue jquery mobile popup on android device. im using android device os 4.4.4. building app using phonegap/cordova.

how replicate issue. first reach page, press button trigger condition activate popup, after press or button on popup close it, when press button again, popup condition met, popup not showing properly, invisible.

possible cause of this? hope here, i've attached code @ bottom of question.

thanks in advance!

//when condition met, execute following function header , text parse in string     function openbox(header, text) {         $("#message-header").html(header);         $("#message-text").html(text);         $("#message").popup("open");     }  function closebox() {   $("#message").popup("close");     }     <div data-role="popup" id="message" class="pop-up pop-up-std" data-overlay-theme="b" data-dismissible="false">         <div class="container">             <h2 id="message-header">header</h2>             <div class="msgbox">                 <div id="message-text" class="text">                 </div>             </div>         </div>         <a href="#" class="btn ui-btn" data-rel="back" onclick="closebox()">start</a>     </div> 

i've fixed it... rearrange popup, if have multiple popups within screen, below have such issue. fix it, bring generic popup top of other popups.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -