Created
September 7, 2015 02:46
-
-
Save mchayapol/6d1919af8a3e797ad0b3 to your computer and use it in GitHub Desktop.
Test JQuery
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
| <!DCOTYPE html> | |
| <head> | |
| <title>Test</title> | |
| <script src="js/jquery-1.11.3.min.js"></script> | |
| <script> | |
| $(document).ready(function () { | |
| document.getElementById('div1').innerHTML = "Hello"; | |
| $('#div2').html("Hello"); | |
| }); | |
| </script> | |
| </head> | |
| <html> | |
| <body> | |
| <div id="div1"></div> | |
| <div id="div2"></div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment