I'm trying to add a class to the body tag just on the homepage and that it. However, it's not working. What am I doing wring?
<script type="text/javascript">
    $(document).ready(function() {
          if(window.location.href===window.location.hostname) {
               $("body").addClass("home");
           }
    });
</script>
 
     
     
     
    