Questions tagged as 'jquery-validate'

1
answer

Clone a complete table without classes and validate both tables

I would like to leave you with the following concern, since I have been struggling for a long time with this and I have not been able to correct what happens. I have this HTML: <div class="clone-group" > <table border="0" class="fo...
asked by 21.03.2016 / 19:58
1
answer

Error message below the input and textarea

I am struggling with Bootstrap 4 and Jquery Validate to get the error message displayed BELOW OR UP from input and textarea but I do not succeed. In the input, the message appears on the right. In the textarea it DOES NOT APPEAR and neither t...
asked by 25.10.2017 / 20:51
1
answer

validate form with jquery-validate in ajax

Hi, I have the following problem, I have made a save function with PHP and Codeigniter , using AJAX too .. everything works fine, but it turns out that I want to validate my form using jquery-validate before making the AJAX request, for...
asked by 19.01.2017 / 16:44
1
answer

How to execute only one function in jquery validate?

I have the following form: <form id="form_telefonoadicional"> <div class="list-block no-hairlines"> <ul> <li> <div class="item-content">...
asked by 11.10.2018 / 22:37
1
answer

Conflict when validating a password with jqueryvalidation

Following the advice of a contributor to this web page, I decided to include the jquery validation plugin Now, I was following a tutorial uploaded by the developers of the plugin, where they implement a function called strongPaswword. In it...
asked by 12.09.2017 / 02:05
2
answers

Why do you mark error in jquery validate plugin?

The plugin de editable I want to apply in the following table <!-- TABLA DETALLES PRODUCTOS --> <div class="col-md-12"> <table id="TableProducts" class="table table-bordered table-responsive"> <thead> <tr clas...
asked by 18.07.2017 / 17:19
1
answer

Validate a text with jquery

I'm working with ASP.NET MVC 5, jquery 3.1 I have a form in which I have a control input, which I only need to allow me to enter only numbers. Jquery code <script> $('#NumeroDocumento').on('keypress', function (e) { if (!$.isNumer...
asked by 19.01.2017 / 21:09
1
answer

validation of a form through ajax and jquery-validate

Good I have the following problem, I made a function to update my data with PHP and Codeigniter, using AJAX too .. everything works fine, but it turns out that I want to validate my form using jquery-validate before making the AJAX request, for...
asked by 24.01.2017 / 15:05
0
answers

jquery validate Uncaught TypeError: $ (...) .validate is not a function

Here I try it and it works well. $( document ).ready(function() { var validator = $( "#form-crear" ).validate(); validator.form(); console.log(validator); }); <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquer...
asked by 03.12.2018 / 16:21
1
answer

Validate Inputs by jquery and validate them with jquery validator?

I already have the validator jquery with other rules of other static inputs, but I am adding some inputs through 'jquery' of the form: var ReglasValoracion1a1000 = { required: true, digits: true, range: [0, 1000],...
asked by 04.10.2018 / 04:35