On my website id like to run a jQuery function if my url contains the word 'test'
All im trying to do is if my url contains the 'rest' string then add a margin to an element on the page?
Ive added a jSfiddle to try and show what Ive done so far.
$(document).ready(function(){         
    // How can I check to see if my url contains the word 'TEST' then run the below function?
    $('.block-widget').css('margin-top, 252px')     
});
                Use window.location to get the current location url..
Based on the condition you can then apply the margin top property.
$(document).ready(function(){         
     var pathname = window.location.pathname;
     if(pathname.indexOf('text') > -1){
        $('.block-widget').css('margin-top, 252px');
     }     
});
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With