﻿$(function () {
    $('input[type="text"]')
        .filter(function () {
            return $(this).parents('form').length > 0;
        })
        .each(function () {
            $(this).rules('add', { notag: true });
        });
});
