🏢🕌 Checkpoint

./public/vanilla-client.js:96831/1671
./public/client.js:96831/210
./views/index.html:96831/514
This commit is contained in:
Glitch (hello-express) 2018-03-19 20:52:00 +00:00
parent 670b2731c5
commit c971f42005
2 changed files with 58 additions and 6 deletions

51
public/vanilla-client.js Normal file
View File

@ -0,0 +1,51 @@
// client-side js
// run by the browser each time your view template is loaded
(function(){
console.log('hello world :o');
const dreams = [
'Find and count some sheep',
'Climb a really tall mountain',
'Wash the dishes'
];
const dreamsList = document.getElementById('dreams');
const dreamsForm = document.forms[0];
dreams.forEach( function(dream) {
const newListItem = document.createElement('li');
newListItem.innerHTML = dream;
dreamsList.appendChild(newListItem);
});
dreamsForm.onsubmit = function(event) {
event.preventDefault();
const dream =
};
})()
/*
$(function() {
console.log('hello world :o');
$.get('/dreams', function(dreams) {
dreams.forEach(function(dream) {
$('<li></li>').text(dream).appendTo('ul#dreams');
});
});
$('form').submit(function(event) {
event.preventDefault();
var dream = $('input').val();
$.post('/dreams?' + $.param({dream: dream}), function() {
$('<li></li>').text(dream).appendTo('ul#dreams');
$('input').val('');
$('input').focus();
});
});
});
*/

View File

@ -29,7 +29,11 @@
<p class="bold">Oh hi,</p>
<p>Tell me your hopes and dreams:</p>
<form>
<input type="text" maxlength="100" placeholder="Dreams!">
<label for="dream-input">
<input id="dream-input" type="text" maxlength="100" placeholder="Dreams!">
</label>
<button type="submit">Submit</button>
</form>
<section class="dreams">
@ -44,11 +48,8 @@
</a>
</footer>
<!-- Your web-app is https, so your scripts need to be too -->
<script src="https://code.jquery.com/jquery-2.2.1.min.js"
integrity="sha256-gvQgAFzTH6trSrAWoH1iPo9Xc96QxSZ3feW6kem+O00="
crossorigin="anonymous"></script>
<script src="/client.js"></script>
<script src="/vanilla-client.js"></script>
<!-- include the Glitch button to show what the webpage is about and