Новое в jQuery. Нужна помощь с простым синтаксисом.
<script>
$(document).ready(function () {
jQuery.validator.addMethod("phoneUS", function (phone_number, element) {
phone_number = phone_number.replace(/\s+/g, "");
return this.optional(element) || phone_number.length > 9 && phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
}, "Please specify a valid phone number");
$("#networx_affiliate").validate({
rules: {
service_name: "required"
}
}).ajaxForm({
url: '**********',
target: '#output',
type: 'post',
dataType: 'xml',
success: function processXml(responseXML) {
// 'responseXML' is the XML document returned by the server; we use
// jQuery to extract the content of the message node from the XML doc
$(xml).find("affiliateresponse").each(function () {
$("#output").append($(this).find("successCode") + "<br />");
$("#output").append($(this).find("errormessage") + "<br />");
});
}
});
});
</script>
Я получил плагин для формы проверки и плагин для формы ajax. Пожалуйста, как правильно их назвать. потому что, как они у меня сейчас, похоже, что ajax не работает.
Спасибо