Skip to content

Instantly share code, notes, and snippets.

View rushkeldon's full-sized avatar

Keldon Rush rushkeldon

View GitHub Profile
@rushkeldon
rushkeldon / index.html
Created October 20, 2020 13:49
mp3_player
<h2>MP3 Player</h2>
<label for="dirpath">URL</label>
<input type="text" id="dirpath" placeholder="URL to directory with MP3 files">
<button class="go">go</button>
<br/>
<b>keepAwake</b>
<input type="checkbox" id="keepawake">
<br/>
<table>
<tr>
@rushkeldon
rushkeldon / stop_scroll.js
Created January 25, 2018 19:39
Stops all scrolling events on a page from being handled by javascript. Paste in your console for Google Slides when using a Magic Mouse (for example)
function blockScroll( e ){
e.preventDefault();
e.stopPropagation();
e.cancelBubble = true;
}
document.addEventListener('wheel', blockScroll, true );
document.addEventListener('mousewheel', blockScroll, true );
document.addEventListener('DOMMouseScroll', blockScroll, true );