Framework 7 On Click Event Work At But Not Outside
html code
&l
Solution 1:
After toolbar-bottom class toolbar-inner div must be followed. like the one give below.
<div class="toolbar toolbar-bottom tabbar-scrollable bottom-nav" style="background: #a3194c;box-shadow:none;">
<div class="toolbar-inner">
<div class="myProgress2" id="myProgress2" style="background-color: grey; width:100px;margin-left: 10px">
<div id="myBar2" class="myBar2" style="width: 3%;height: 10px;background-color:white;"></div>
</div>
<div class="myProgress2" id="myProgress2" style="background-color: grey; width:100px;margin-left: 10px">
<div id="myBar2" class="myBar2" style="width: 3%;height: 10px;background-color:white;"></div>
</div>
</div>
</div>
The way you have written the div will be considered as pseudo-element which is not available for DOM.
Post a Comment for "Framework 7 On Click Event Work At But Not Outside"