Skip to content

Instantly share code, notes, and snippets.

View stephencweiss's full-sized avatar
🎉

Stephen Weiss stephencweiss

🎉
View GitHub Profile
@stephencweiss
stephencweiss / submitForm3.js
Created January 5, 2019 02:26
eventHanlder with HTMLFormElement.reset() added
function submitForm (event) {
event.preventDefault();
console.log(`Form submitted!`);
const name = document.querySelector('[name]').value;
console.log(`The name is --> `, name);
// Do anything else you want here
formClass.reset(); // <-- Our *new* money line
}
@stephencweiss
stephencweiss / submitForm2.js
Last active January 5, 2019 02:27
eventHandler with event.preventDefault() added
function submitForm (event) {
event.preventDefault(); // <-- This is the money line
console.log(`Form submitted!`);
const name = document.querySelector('[name]').value;
console.log(`The name is --> `, name);
}
// Create a variable that selects the form
let formClass = document.querySelector('.form-class')
// Define what happens on form submission
function submitForm(event) {
console.log(`Form submitted!`);
// The name the user types into the form.
const name = document.querySelector('[name]').value;
console.log(`The name is --> `, name);
}
<div>
<form class="form-class">
<input type="text" name="customer" placeholder="Your Name" required>
<input type="submit">
</form>
</div>
@stephencweiss
stephencweiss / simple-form.html
Created January 5, 2019 01:47
A simple HTML form which is prevented from refreshing, but is cleared post submission.
<div>
<form class="form-class">
<input type="text" name="customer" autocomplete="off" placeholder="Your Name" required>
<input type="submit">
</form>
</div>
<script>
console.log(`The path is --> `, window.location.pathname);
let formClass = document.querySelector('.form-class');
@stephencweiss
stephencweiss / removeLinkedListDuplicates.js
Created December 29, 2018 16:53
A method to remove duplicates from a linked list
/**
* removeLinkedListDuplicates: Removes duplicates from an unsorted linked list.
* Return value is a linked list with duplicates removed.
* @param {Object} linkedList - The linkedList to remove duplicates from.
* @param {Object} [currentNode] - The currently evaluated node
* @param {Object} [previouslySeen] - An object storing the values of all previously seen nodes
*/
function removeLinkedListDuplicates(linkedList, currentNode, previouslySeen ) {
currentNode = currentNode || linkedList.head;
@stephencweiss
stephencweiss / description.js
Created December 29, 2018 16:51
A sample description comment
/**
* The description begins here.
* More description continues here.
*/
@stephencweiss
stephencweiss / functionDescription.js
Created December 29, 2018 16:47
A simple example of using function descriptions on foo(bar)
/**
* Foo takes any argument.
* The return value is 'baz' in all cases.
* @param {*} bar - Any argument
* @param {string} [optionalArg] - An optional argument that is a string
*/
function foo(bar, optionalArg) {
return 'baz';
}
@stephencweiss
stephencweiss / div-notes.css
Created December 27, 2018 21:19
A simple CCS style for a div with a class of notes.
div.notes {
font-family: sans-serif;
background: #ffc600;
}
#An alias to naviage up one directory level
alias up='cd ..'