Skip to content

Instantly share code, notes, and snippets.

View juiceByStaplez's full-sized avatar

Matthew McKey juiceByStaplez

View GitHub Profile
insta_patient_finder = {
init: function() {
$('#patient-finder input').focusout(function() {
insta_patient_finder.search();
});
},
search: function() {
var p_fname = $('#p_fname').val();
var p_lname = $('#p_lname').val();
var p_dob = $('#p_dob').val();
@juiceByStaplez
juiceByStaplez / 0_reuse_code.js
Created November 14, 2013 16:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console