Добрый день всем. Есть такой код (форма регистрации) -
<form name="registerform" id="registerform<?php $template->the_instance(); ?>" action="<?php $template->the_action_url( 'register' ); ?>" method="post">
<p>
<label for="user_login<?php $template->the_instance(); ?>"><?php _e( 'Username' ); ?></label>
<input type="text" name="user_login" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_login' ); ?>" size="20" />
</p>
<p>
<label for="user_email<?php $template->the_instance(); ?>"><?php _e( 'E-mail' ); ?></label>
<input type="text" name="user_email" id="user_email<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_email' ); ?>" size="20" />
</p>
<?php do_action( 'register_form' ); ?>
<p id="reg_passmail<?php $template->the_instance(); ?>"><?php echo apply_filters( 'tml_register_passmail_template_message', __( 'A password will be e-mailed to you.' ) ); ?></p>
<p class="submit">
<input type="submit" name="wp-submit" id="wp-submit<?php $template->the_instance(); ?>" value="<?php esc_attr_e( 'Зарегистрироваться' ); ?>" />
<input type="hidden" name="redirect_to" value="<?php $template->the_redirect_url( 'register' ); ?>" />
<input type="hidden" name="instance" value="<?php $template->the_instance(); ?>" />
<input type="hidden" name="action" value="register" />
</p>
</form>
Хочу ввести проверку поля user_login на минимальное количество символов, пытаюсь подключить jquery validate (смотрел
http://goo.gl/9yad3J ) , но видимо из-за того что у меня id не просто user_login , user_login<?php $template->the_instance(); , то проверка не срабатывает. Пожалуйста подскажите как решить эту проблему. Мне нужна только проверка на минимальную длину логина.