Skip to content

Instantly share code, notes, and snippets.

View HereIsJade's full-sized avatar

Jade HereIsJade

  • New York
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Dynamic mobile resizing with rem units</title>
<script>
let pageWidth = window.innerWidth;
document.write(`<style>html{font-size: ${pageWidth}px;}</style>`)
</script>
@HereIsJade
HereIsJade / db
Last active August 28, 2018 01:25
JSONP demo
100
@HereIsJade
HereIsJade / index.html
Created August 28, 2018 21:56
Ajax demo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>AJAX demo</title>
</head>
<body>
<button id="btn">Click to make an HTTP request</button>
<script>