Skip to content

Instantly share code, notes, and snippets.

View odunboye's full-sized avatar

Odun Adeboye odunboye

View GitHub Profile
@emchateau
emchateau / dataBinding.js
Last active December 23, 2020 02:47 — forked from amowu/data-binding.js
Two-way data binding in pure Javascript
// http://stackoverflow.com/a/16484266/754377
function DataBind(element, data) {
this.data = data;
this.element = element;
element.value = data;
element.addEventListener("change", this, false);
}
DataBind.prototype.handleEvent = function(event) {
@devhammed
devhammed / nigeria-state-and-lgas.json
Last active April 9, 2025 06:05
Nigeria States and LGAs in one JSON file
[
{
"state": "Adamawa",
"alias": "adamawa",
"lgas": [
"Demsa",
"Fufure",
"Ganye",
"Gayuk",
"Gombi",