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.
<script>
function showhide(id){
if (document.getElementById){
obj = document.getElementById(id);
if (obj.style.display == "none"){
obj.style.display = "";
} else {
obj.style.display = "none";
}
}
}
</script>
<div style="display: none;" id="script">
Show/Hide/Покажи/Скрий пляскания div.
</div>
<p><a href="#" onclick="showhide('script'); return(false);">+</a></p>