Skip to content

Instantly share code, notes, and snippets.

View 01-event-delegation.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Event Delegation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin: 1em auto;
@cferdinandi
cferdinandi / index.html
Created September 12, 2023 02:09
Two-way data-binding and reactivity. https://gomakethings.com/sotb/
View index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Data Binding</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin: 1em auto;
View index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Web Components</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin: 0 auto;
View code-sandbox-with-highlighting.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code Sandbox</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
*,
View basic-sandbox.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code Sandbox</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
View api.php
<?php
//
// Utility Methods
// I usually keep this in a separate file for reuse across APIs
//
/**
* Get the API method
View classes.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Classes</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
View completed.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>isUniqueString()</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
View template.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>isUniqueString()</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
View diy-jquery.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery => Vanilla JS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>