12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- (function ($) {
- "use strict";
- //$("#comp").attr("disabled", true);
-
- /*==================================================================
- [ Focus Contact2 ]*/
- $('.input3').each(function(){
- $(this).on('blur', function(){
- if($(this).val().trim() != "") {
- $(this).addClass('has-val');
- }
- else {
- $(this).removeClass('has-val');
- }
- })
- })
-
- /*==================================================================
- [ Chose Radio ]*/
- /*$("#radio1").on('change', function(){
- if ($(this).is(":checked")) {
- $('.input3-select').slideUp(300);
- }
- });
- $("#radio2").on('change', function(){
- if ($(this).is(":checked")) {
- $('.input3-select').slideDown(300);
- }
- if (!$(this).is(":checked")) {
- //$("#comp").attr("disabled", true);
- $('.input3-select').slideUp(300);
- }
- });*/
-
-
-
- /*==================================================================
- [ Validate ]*/
- var name = $('.validate-input input[name="name"]');
- var email = $('.validate-input input[name="email"]');
- var message = $('.validate-input textarea[name="message"]');
- $('.validate-form').on('submit',function(){
- var check = true;
- if($(name).val().trim() == ''){
- showValidate(name);
- check=false;
- }
- if($(email).val().trim().match(/^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{1,5}|[0-9]{1,3})(\]?)$/) == null) {
- showValidate(email);
- check=false;
- }
- if($(message).val().trim() == ''){
- showValidate(message);
- check=false;
- }
- return check;
- });
- $('.validate-form .input3').each(function(){
- $(this).focus(function(){
- hideValidate(this);
- });
- });
- function showValidate(input) {
- var thisAlert = $(input).parent();
- $(thisAlert).addClass('alert-validate');
- }
- function hideValidate(input) {
- var thisAlert = $(input).parent();
- $(thisAlert).removeClass('alert-validate');
- }
- })(jQuery);
|