Created
January 4, 2016 15:55
-
-
Save ddeveloperr/87b1a4381380fb50faa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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