Last active
November 11, 2017 22:34
-
-
Save FlintSable/931f8be654a6cbf7cf68ee1d7e792f9b 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> | |
| <meta charset="utf-8"> | |
| <link href='//fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'> | |
| <link rel="stylesheet" href="css/main.css"> | |
| <title>AJAX with JavaScript</title> | |
| <script> | |
| // create the http request object | |
| var xhr = new XMLHttpRequest(); | |
| // create call back function | |
| xhr.onreadystatechange = function(){ | |
| if(xhr.readyState === 4){ | |
| document.getElementById('ajax').innerHTML = xhr.responseText; | |
| } | |
| }; | |
| // open the request | |
| xhr.open('GET', 'sidebar.html'); | |
| function sendAJAX(){ | |
| // send the request | |
| xhr.send(); | |
| document.getElementById('load').style.display = "none"; | |
| } | |
| </script> | |
| </head> | |
| <body> | |
| <div class="grid-container centered"> | |
| <div class="grid-100"> | |
| <div class="contained"> | |
| <div class="grid-100"> | |
| <div class="heading"> | |
| <h1>Bring on the AJAX</h1> | |
| <button id="load" onclick="sendAJAX()">Bring it!</button> | |
| </div> | |
| <div id="ajax"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
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
| const login = document.getElementById('login'); | |
| const loginMenu = document.getElementById('loginMenu'); | |
| login.addEventListener('click', () => { | |
| if(loginMenu.style.display === 'none'){ | |
| loginMenu.style.display = 'inline'; | |
| } else { | |
| loginMenu.style.display = 'none'; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment