Skip to content

Instantly share code, notes, and snippets.

@hidaytrahman
Created April 13, 2015 10:23
Show Gist options
  • Save hidaytrahman/8e25da54256f472d01a5 to your computer and use it in GitHub Desktop.
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
//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