Created
April 13, 2015 10:23
-
-
Save hidaytrahman/8e25da54256f472d01a5 to your computer and use it in GitHub Desktop.
Do something in particular page using get URL in jquery, Very helpful for unique page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Md Hidaytullah - Web Designer and UI Developer | |
$(document).ready(function() { | |
var myTargetPath = "/website-main/allergy.html"; | |
if(window.location.pathname==myTargetPath) | |
{ | |
$('.about-us').addClass('allergy-page'); | |
} | |
//alert(window.location.pathname); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment