Skip to content

Instantly share code, notes, and snippets.

@rameyrobo
Last active January 27, 2020 22:10
Show Gist options
  • Save rameyrobo/cdcc963b7b805ee24411f9c1de50959a to your computer and use it in GitHub Desktop.
Save rameyrobo/cdcc963b7b805ee24411f9c1de50959a to your computer and use it in GitHub Desktop.
jQuery addClass if id is present on page
// Adding a class if id exists
if ($("#ifIdIsPresent")[0]){
$(".targetClass").addClass( "new-class" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment