JQuery multiple indexof on Windows location Href
So I have this code that adds a class to my section whenever there's a url slug detected or contains that url. <script type="text/javascript"> jQuery(document).ready(function() { if (window.location.href.indexOf('product') > -1 || window.location.href.indexOf('about') > -1 || window.location.href.indexOf('careers') > -1 || window.location.href.indexOf('pricing')…