Skip to content

Instantly share code, notes, and snippets.

@ddeveloperr
Created January 4, 2016 15:55
Show Gist options
  • Select an option

  • Save ddeveloperr/87b1a4381380fb50faa6 to your computer and use it in GitHub Desktop.

Select an option

Save ddeveloperr/87b1a4381380fb50faa6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>jQuery Example 1</title>
<style>
.red {
color: red;
}
</style>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
$('h1').addClass('red');
});
</script>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment