css - Hi Help for the following javascript issue -


i have issue following code safari browser(8.0/7.2) in macbook pro os x 10.x. working when stop page redirect next page or press "esc" button or when run javascript code in debug mode. working fine versions of browser. tried opacity possibility.

<script> function myfunctio(){ document.getelementbyid("waiting_popup").style.display = "block"; document.getelementbyid("waitingdiv").style.display = "block"; } </script>   <style type="text/css">     .popupboxbg{         display: none;         background-image: url("/shared/wallet/images/common/bgcover.png");         background-repeat: repeat;         top: 0;         left: 0;         position:fixed;         vertical-align: middle;         z-index:10;         min-width:100%;         min-height:100%;     }     .popupboxdiv{         display: none;         width:300px;         border:3px solid #6495ed;         background-color:#ffffff;         margin:50px 300px;         position:fixed;         z-index:100;     } </style>  <html> <body> <div id="waiting_popup" class="popupboxbg">         </div>         <div id="waitingdiv" class="popupboxdiv">             <p align="center"><img src="/shared/wallet/images/common/loader.gif" width="90" height="30"></p>             <p align="center"><br>             <font size="2" face="verdana, arial, helvetica, sans-serif">your request being processed...<br>please  <b>do not</b> use browser's 'back' button or refresh screen.</font>                 <br>                 <font><b>--------------------------------------------------</b></font>                 <br>             <div style="width: 20%; float:left"><img width="50" height="50" src="/shared/wallet/images/common/seat_icon.gif"></div>             <div style="width: 80%; float:right"><p id="textpassengerpara" style="margin:0px 5px 10px 5px;">             <% if( 2 == 1){%>                 <font size="2" face="verdana, arial, helvetica, sans-serif">seat selection button displayed on next page. click on choose seating.</font>             <% }else{%>                 <font size="2" face="verdana, arial, helvetica, sans-serif">seat selection button displayed on next page. see you\'ll sitting , if can have adjacent seats.</font>             <% }%>             </div>         </div> </body> </html> 


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -