Skip to content

Instantly share code, notes, and snippets.

View jlarteaga's full-sized avatar

Jorge Luis Arteaga Almaraz jlarteaga

View GitHub Profile
@jlarteaga
jlarteaga / test.html
Created October 14, 2014 20:29
HTML: test
<html>
<head>
<title>JQuery Test</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<input type="text" name="input1" id="input1">
<div id="result-panel"></div>
<script type="text/javascript">
$(function() {
@jlarteaga
jlarteaga / jquerytest.html
Created October 14, 2014 20:25
HTML: Basic Sample
<html>
<head>
<title>JQuery Test</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<input type="text" name="input1" id="input1">
<div id="result-panel"></div>
<script type="text/javascript">
$(function() {