// File Name: oneshop-validation.js.php // Version: 1.0.2 06/11/2009 // Author: 1shoppingcart.com // Author URI: http://1shoppingcart.com // Copyright 2009 1shoppingcart.com (email : support@1shoppingcart.com) jQuery(function($) { var errorContainer = $("
").appendTo("#oneshop_custom_form").hide(); var errorLabelContainer = $("
").appendTo("#oneshop_custom_form").hide(); $("#oneshop_custom_form").validate({ errorContainer: errorContainer, errorLabelContainer: errorLabelContainer, ignore: ":hidden", messages: { Name: "", Email1: { required: "", email: "" }, Company: "", HomePhone: "", WorkPhone: "", Address1: "", Address2: "", City: "", State: "", Zip: "", Country: "", Fax: "", field1: "", field2: "", field3: "", field4: "", field5: "", field6: "", field7: "", field8: "", field9: "", field10: "" } }); });