Artmetic Artykuł Hide css class/button on sites.

Hide css class/button on sites.


How to hide or show class

<script>
   if(window.location.pathname == "/my_url_site/site" || window.location.pathname == "/category/poduct")
	   {
		document.getElementById("myButtonClass").style.visibility = "visible"; 
	   }
</script>

in CSS it is defined in that way:

.myButtonClass{
	background: blue; 
	visibility: hidden;
}

In html code you should declare:

<div class="myButtonClass"> text or something else.. </div>

Leave a Reply

Twój adres email nie zostanie opublikowany. Pola, których wypełnienie jest wymagane, są oznaczone symbolem *

Witryna wykorzystuje Akismet, aby ograniczyć spam. Dowiedz się więcej jak przetwarzane są dane komentarzy.

Related Post