javascript - Bootstrap popover is not functional only in Windows 8 phone but its functional in android phone -


i m building hybrid application multiple platform such windows , android , ios.

following snippet popover working in android , ios phone

 <button id="alarmbutton" type="button" class="btn btn-primary btn-md" data-contentwrapper=".myanalyticscontent" rel="analyticspopover" style="width: 32%;"><img src="resources/images/alarms.png" /></button> 

and script code popover

 <div class="myanalyticscontent" id="myanalyticscontent"> <!-- here    define     content , add attribute data-contentwrapper t0 selector-->      <h3 id="alarmlabel" >set alarm type</h3>       <hr id="alarmform"></hr>   <script>     $('[rel=analyticspopover]').popover({         html: true,         placement: 'top',         content: function () {             return $($(this).data('contentwrapper')).html();         }     });  </script>          </div> 

the above piece of code functional in android phone, in windows phone code crashing because of inner html exception. added

<script src="thirdparty/winstore-jscompat.js"></script> 

because of no exception seen,but popover not functional in windows phone.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -