Skip to content

Instantly share code, notes, and snippets.

View Frodigo's full-sized avatar

Marcin Kwiatkowski Frodigo

View GitHub Profile
@Frodigo
Frodigo / jsbin.xatuvo.js
Last active October 8, 2015 18:13 — forked from anonymous/index.html
JS Bin// source http://jsbin.com/xatuvo
// dziedziczenie
var Person = function(name) {
this.name = name;
};
Person.prototype.sayHello = function() {
console.log('Cześć jestem ' + this.name);
};
@Frodigo
Frodigo / index.html
Created October 6, 2015 19:53 — forked from anonymous/index.html
JS Bin // source http://jsbin.com/qigube
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="input-wrap">
<label><input type="checkbox" data-check="all">all</label>