Horje
js add class when hover Code Example
js add class when hover
<script>
  $(document).ready(function () {
    $(".box").hover(
      function () {
        $(this).addClass("box-hover");
      },
      function () {
        $(this).removeClass("box-hover");
      }
    );
  });
</script>




Html

Related
simple html website coding Code Example simple html website coding Code Example
did not expect server html to contain a div in div Code Example did not expect server html to contain a div in div Code Example
free html signature template Code Example free html signature template Code Example
nuxt back Code Example nuxt back Code Example
image grid markdown github Code Example image grid markdown github Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9