Skip to content

Instantly share code, notes, and snippets.

@stephenscaff
Created June 30, 2014 10:15
Show Gist options
  • Select an option

  • Save stephenscaff/7fa8b7eaf4169175736a to your computer and use it in GitHub Desktop.

Select an option

Save stephenscaff/7fa8b7eaf4169175736a to your computer and use it in GitHub Desktop.
Find page url to add class
$(function(){
//If the url contains foo
if (window.location.href.indexOf('foo') >= 0) {
//add a class on specified div
$('.myclass').addClass('myaddedclass') ;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment