This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function() { | |
validate_contact_form('#contact_form'); | |
validate_contact_form('.productsPopup'); | |
}); | |
function validate_contact_form(form){ | |
var validation_fields = ["#first_name", "#last_name", "#company", "#phone"]; | |
jQuery.each(validation_fields, function(index, value){ | |
$(form + ' ' + value).blur(function(){ |