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.
<divclass="toolbar toolbar-bottom tabbar-scrollable bottom-nav"style="background: #a3194c;box-shadow:none;"><divclass="toolbar-inner"><divclass="myProgress2"id="myProgress2"style="background-color: grey; width:100px;margin-left: 10px"><divid="myBar2"class="myBar2"style="width: 3%;height: 10px;background-color:white;"></div></div><divclass="myProgress2"id="myProgress2"style="background-color: grey; width:100px;margin-left: 10px"><divid="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"