Ryan Shimko

My Contact Information

Mailing Address

1130 Keefer Road

Girard Ohio, 44420

or

210 Broadway

Youngstown Ohio, 44504

Email and Phone

RyanShimko@gmail.com or Rashimko@student.ysu.edu

330.647.1101

Contact Form

Your message was sent succssfully! I will be in touch as soon as I can.

Something went wrong, try refreshing and submitting the form again.

jQuery.validator.addMethod('answercheck', function (value, element) { return this.optional(element) || /^\bcat\b$/.test(value); }, "type the correct answer -_-"); // validate contact form $(function() { $('#contact').validate({ rules: { name: { required: true, minlength: 2 }, email: { required: true, email: true }, message: { required: true }, answer: { required: true, answercheck: true } }, messages: { name: { required: "come on, you have a name don't you?", minlength: "your name must consist of at least 2 characters" }, email: { required: "no email, no message" }, message: { required: "um...yea, you have to write something to send this form.", minlength: "thats all? really?" }, answer: { required: "sorry, wrong answer!" } }, submitHandler: function(form) { $(form).ajaxSubmit({ type:"POST", data: $(form).serialize(), url:"process.php", success: function() { $('#contact :input').attr('disabled', 'disabled'); $('#contact').fadeTo( "slow", 0.15, function() { $(this).find(':input').attr('disabled', 'disabled'); $(this).find('label').css('cursor','default'); $('#success').fadeIn(); }); }, error: function() { $('#contact').fadeTo( "slow", 0.15, function() { $('#error').fadeIn(); }); } }); } }); });

Twitter

Facebook

Ryan Shimko

1130 keefer Rd, Girard Ohio 44420

Email: rashimko@student.ysu.edu

Phone:330.647.1101

Have A Nice Day!

jQuery http://code.jquery.com/jquery-latest.min.js jQuery Form Plugin //cdnjs.cloudflare.com/ajax/libs/jquery.form/3.32/jquery.form.js jQuery Validate //cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.11.1/jquery.validate.min.js