Skip to content

Instantly share code, notes, and snippets.

@crown27
crown27 / Page.asp
Created January 30, 2019 18:46 — forked from joseph-montanez/Page.asp
ASP Classic example of REST / JSON call
<%@ Language="VBScript" %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<!--#include file="json.asp"-->
<%
@crown27
crown27 / README.md
Created October 22, 2018 14:11 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})