Skip to content

Instantly share code, notes, and snippets.

@joshmoto
Created October 22, 2020 17:43
Show Gist options
  • Save joshmoto/45ad0d7ee315e85c9026c4928685fe90 to your computer and use it in GitHub Desktop.
Save joshmoto/45ad0d7ee315e85c9026c4928685fe90 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
var url = window.location.pathname;
var filename = url.substring(url.lastIndexOf('/')+1);
$("html").addClass( filename.split('.')[0] );
});
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment