Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<div class="div1">
<div class="hsId0">SubDiv 1</div>
<div class="hsId1">SubDiv 2</div>
<div class="hsId2">SubDiv 3</div>
</div>
$(document).ready(function(){
$('div.div1 div').each(function() {
var elementClass = $(this).attr('class');
$(this).attr('class', elementClass+' hs');
});
})
div.hs {color: red;}