Skip to content

Instantly share code, notes, and snippets.

View msh345's full-sized avatar

Mark Horowitz msh345

View GitHub Profile
@msh345
msh345 / carousel.js
Created September 26, 2013 20:34 — forked from ksolo/carousel.js
Image Carousel
@msh345
msh345 / form-validator.js
Last active December 24, 2015 00:49 — forked from ksolo/form-validator.js
Form Validation
// shorthand for $(document).ready();
$(function(){
$('form').on('submit', function(event){
event.preventDefault()
$('#errors').html('')
var email = $(this).find("input[name='email']").val()
var password = $(this).find("input[name='password']").val()
var reEmail = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
var rePasswordNumber = /\d/;
var rePasswordCapital = /[A-Z]/;
@msh345
msh345 / zoo.js
Created September 26, 2013 15:30 — forked from dbc-challenges/zoo.js
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------
// DRIVER CODE: Do **NOT** change anything below this point. Your task is to implement code above to make this work.
//------------------------------------------------------------------------------------------------------------------
@msh345
msh345 / index.html
Created September 26, 2013 15:05 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
</head>
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the Socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/
$(document).ready(function () {
$( "form" ).on( "click", function(event){
event.preventDefault();
var die=Math.floor(Math.random()*6)+1;
var url=$('form').attr("action");
$.post(url, die, function(){
$('img').replaceWith("<img src=" + "'" die +".png'>");
});
});
@msh345
msh345 / form-validator.js
Last active December 22, 2015 09:49 — forked from ksolo/form-validator.js
Form Validation
// shorthand for $(document).ready();
$(function(){
$('form').on('submit', function(event) {
event.preventDefault();
var email = document.sign_up.email.value;
var password = document.sign_up.password.value;
$('#errors').html('')
checkEmail(email);
checkPassword(password);
});
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/