Skip to content

Instantly share code, notes, and snippets.

View mchayapol's full-sized avatar

Chayapol Moemeng mchayapol

View GitHub Profile
@mchayapol
mchayapol / index.html
Last active September 7, 2015 03:52
WIP Contact App with JQuery
<!DCOTYPE html>
<head>
<title>Contacts</title>
<script src="js/contact.js"></script>
<script src="js/jquery-1.11.3.min.js"></script>
<script>
function restoreUI() {
var divList = document.getElementById('divList');
@mchayapol
mchayapol / test.html
Created September 7, 2015 02:46
Test JQuery
<!DCOTYPE html>
<head>
<title>Test</title>
<script src="js/jquery-1.11.3.min.js"></script>
<script>
$(document).ready(function () {
document.getElementById('div1').innerHTML = "Hello";
$('#div2').html("Hello");
@mchayapol
mchayapol / table-layout.html
Created August 25, 2015 03:23
Sample HTML Table layout
<!DOCTYPE html>
<html>
<head>
<style>
td {
//border: 1px solid black;
}
body {
font-family: arial;