Skip to content

Instantly share code, notes, and snippets.

View tapickell's full-sized avatar
🌴
Just happy to be here

Todd Pickell tapickell

🌴
Just happy to be here
View GitHub Profile
<!DOCTYPE html>
<html>
<body>
<p>A script on this page starts this clock:</p>
<p id="demo"></p>
<script>
var myVar=setInterval(function(){myTimer()},1000);
@tapickell
tapickell / phonegapGist.html
Created April 18, 2013 15:42
my button and label (for lack of a better term) in the html file and my corresponding js file
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.3.1.min.css" />
<script type="text/javascript" charset="utf-8" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery.mobile-1.3.1.min.js"></script>
<title>Hello World</title>
@tapickell
tapickell / new.html.erb
Created April 8, 2013 00:04
ERB: Sign IN
<h1>Sign in</h1>
<div class="row">
<div class="span6 offset3">
<%= form_tag sessions_path do |f| %>
<%= label_tag :email %><br />
<%= text_field_tag :email, params[:email] %>
<%= label_tag :password %><br />
<%= password_field_tag :password %>