0
Well I am validating a form in the service, but I am with some difficulties, I am using the plugin validate of jquery, you know a way in jquery more efficient and more attractive ?
0
Well I am validating a form in the service, but I am with some difficulties, I am using the plugin validate of jquery, you know a way in jquery more efficient and more attractive ?
Browser other questions tagged jquery
You are not signed in. Login or sign up in order to post.
what difficulties? validate works well, need to explain a little better so we can help you
– Ricardo Pontual
So I did the validation for a form using the right validate, in the form I Validei would have a button that would open another page to fill out the registration information, but so I’m not able to call this other page that would be this personal code_validation_Function () { $('#frmPessoaF'). validate({ Rules: { id_PF_Nome: { required: true } }, messages: { id_PF_Nome: { required: "Enter your name" } }, wrapper: 'div' }) }
– Leonardosfarias
At least post in the question the form HTML.
– user60252
as @Leocaracciolo commented, click on the "edit" link just below your question and put the
html
and that codejavascript
on the question to get a better view– Ricardo Pontual