Skip to content

Instantly share code, notes, and snippets.

View sefzig's full-sized avatar

Andreas Sefzig sefzig

View GitHub Profile
@metmajer
metmajer / README.md
Last active March 31, 2019 09:06
Zoomable Sunburst with Labels

Zoomable Sunburst with Labels

@franzenzenhofer
franzenzenhofer / jquery.bodysnatch.js
Created November 10, 2012 16:26
jquery plugin that replaces elements with absolute positioned clones of themselves, while hiding & silencing the originals
(function($){
isString = function (obj) {
return toString.call(obj) == '[object String]';
};
$.fn.bodysnatch = function() {
var collection = this;
return collection.each(function(a,b) {
var element = $(this);
var clone = element.clone();