javascript - Add Class To Body On Homepage -


i'm trying add class body tag on homepage , it. however, it's not working. doing wring?

<script type="text/javascript">     $(document).ready(function() {           if(window.location.href===window.location.hostname) {                $("body").addclass("home");            }     }); </script> 

window.location.href never same window.location.hostname since former contain protocol part (e.g.: http://) latter doesn't.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -