Skip to content

Instantly share code, notes, and snippets.

View SergiyIlchyshyn's full-sized avatar
🏠
Working from home

Sergiy Ilchyshyn SergiyIlchyshyn

🏠
Working from home
View GitHub Profile
@SergiyIlchyshyn
SergiyIlchyshyn / README.md
Created March 21, 2020 16:36 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@SergiyIlchyshyn
SergiyIlchyshyn / change-class-on-scroll.html
Created March 21, 2020 15:38 — forked from ohiosveryown/change-class-on-scroll.html
Vanilla JS – change/add class based on scroll position.
// https://codepen.io/cmykw/pen/gemxJm
// layout
<nav/>
// style
<style>
body { min-height: 200vh; }
nav {