Skip to content

Instantly share code, notes, and snippets.

View heiduschat's full-sized avatar
🎯
Focusing

Andreas Heiduschat heiduschat

🎯
Focusing
View GitHub Profile
@heiduschat
heiduschat / plink-plonk.js
Created February 28, 2020 09:46 — forked from tomhicks/plink-plonk.js
Listen to your web pages
@heiduschat
heiduschat / jquery.js
Created April 16, 2018 11:10 — forked from timothyjensen/jquery.js
Wrap sibling groups using jQuery.
$(document).ready(function() {
$(':not(.sibling-element) + .sibling-element, * > .sibling-element:first-of-type').
each(function() {
$(this).
nextUntil(':not(.sibling-element)').
addBack().
wrapAll('<div class="sibling-wrapper" />');
});
});