0
votes
2answers
25 views

form.valid() not working from .js file in MVC

I have a .js file which is called on mvc form submit click. In that .js file function I am trying to validate the form before I do ajax post to my controller I have also referred following script ...
0
votes
0answers
30 views

Validate Input before addRow

Does anyone have a simple example on how to combine this table addrow plugin with jquery validation plugin? I want to validate the input before creating a new row.
0
votes
2answers
54 views

Add Rules On Dynamic Form

I'm trying to add validation rules on a form that is dynamically populated, depending on a JSON response from a back-end. I'm using jQuery 1.9.1 and jQuery Validation plugin. function getItems(Id) { ...
1
vote
1answer
106 views

jquery-mobile ajax runs one more time after every failed pass

I have my html page where people can sign up, which calls my php page for checks and inputs to db, If i get an error, for example someone does not select their gender it alerts the user as it should. ...
1
vote
1answer
220 views

jQuery Unobtrusive Validation - remote validation gives false positives and settings being ignored?

I thought I had a pretty bullet-proof set up for using jQuery Unobtrusive Validation for MVC web apps but a recent bug has me very puzzled. I want all the validation to be consistent so use remote ...
0
votes
1answer
59 views

Jquery validator plugin ajax submition not triggering

I have a problem with my the Jquery validator (http://bassistance.de/jquery-plugins/) plugins submitHandler function. The form is validated correctly and the invalid handler message triggers ...
0
votes
1answer
114 views

Jquery Validation on Dom not displaying message

I stumbled upon some code that has jQuery validation which is triggered after an ajax call that adds items to the DOM. The validation is working but the message is missing. just the field is ...
0
votes
1answer
56 views

Is server side validation required, when data is posted through ajax?

In my project, I am storing FORM data by POSTING it to one php file. I am sending data through ajax on buttonclick and i am doing client side validation, so anyways i can not do database insertion ...
-1
votes
1answer
244 views

Error message displaying every time. Using Jquery validator in MVC Project

My Html Code as well as Javascript code is follows. <h2>Register</h2> @using (Html.BeginForm()) { @Html.ValidationSummary(true) <fieldset class="acloginform"> ...
0
votes
2answers
470 views

jquery form validation not executing

i have a form with the following fields inputUser,inputEmail,inputPhoneNo,inputPassword,inputConfirmPassword and one button with createRegistration when ever on the blur condition the message should ...
0
votes
2answers
68 views

Trouble validating form using jquery (plugin)

The plugin appears to be working fine. If I leave my two fields empty I get notified that they are required and that they have to be a valid number. The problem I'm having is if I fill in the two ...
0
votes
0answers
55 views

jQuery ajaxSetup() with validate plugin

I need to use the dataFilter to remove '//' from the beginning of json strings returned from the validate plugin and I'm having some issues getting it to work. The relevant portions of my code are: ...
0
votes
2answers
119 views

jQuery validation followed by Ajax post

I'm trying to combine jQuery validation plugin with Ajax post. This is my code: PHP form: <form id="newsletter_form" method="post"> <input name="newsletteremail" type="text" ...
0
votes
1answer
174 views

jQuery $.ajax function doesn't get data from $(…).validate function

I've faced the following trouble while trying to combine jQuery validation (plugin) and sending data to server using ajax. If I'm using this jQuery method for only posting data to server on its own, ...
1
vote
2answers
102 views

Why is my validation ajax call delaying the entire validation method?

I'm validating a form containing user profile information, and I want to check with my server to see if the user name specified by the user is already in use. I've defined a validation method like ...
0
votes
2answers
148 views

jQuery.validator.addMethod always returning true in CodeIgniter

I'm trying to validate if a user already exists or not. The error output of username is always "This username is already taken.". jQuery validation: All validation errors work except uniqueUsername ...
0
votes
2answers
144 views

How to place JQuery error label dynamically after validating from server

I am working on signup form. I've validated the fields for required, minlength etc, and placed validate error message before an element like this: $('#register').validate( { rules: { ...
0
votes
2answers
79 views

Submit form with ajax and post to to pages

A bit of a tricky one here Is there a way i can join the two scripts below into one so when the form is posted it actually loads both the different named url's into the 2 different named divs ...
4
votes
1answer
73 views

Submiting form with Ajax

I have a div set up with a form inside and set to post using ajax and returning the results in the div like so $(document).ready(function(){ $("#guestList").validate({ debug: false, ...
0
votes
1answer
478 views

Validate Email before Ajax Load using: jquery.validate.min.js

I am new to jquery. I've been researching and am having trouble trying to validate email address before ajax load using query.validate.min.js. I want to validate the form and only call app.ajax.load ...
11
votes
1answer
5k views

jquery.unobtrusive-ajax plugin broken when updating to Jquery 1.9.0 [duplicate]

Possible Duplicate: jQuery 1.7 - Turning live() into on() //Solution: I simply replaced the four occurrences like the approved answer suggested and unobtrusive ajax plugin is up and working ...
0
votes
2answers
402 views

jQuery Remote validation for multiple fields

I have a form with two fields User ID and Email ID. I am trying to validate value of each field is already taken or not using same php file with jQuery remote validation. But my confusion is how ...
0
votes
1answer
192 views

Validation of partial view inside an IEnumerable view

I have a view that renders a table of editable data. The page has Ajax controls that allow you to add and delete single rows on the table. I accomplish this with a strongly-typed view that has a model ...
0
votes
0answers
60 views

mailing form validation prior to submition is not working

I have a simple contact-us form with captcha validation, which was working in the old fission way by sending user to the sendmail.php page, which contains my mailing script as well as text that is ...
1
vote
0answers
230 views

jQuery - Using validate plugin with AJAX form plugin

I have used both the validate plugin and the AJAX form plugin to great success, but using them together is baffling me. If I use the validate plugin to validate, then on success, post the AJAX form, ...
0
votes
1answer
65 views

How to use jQuery validation plugin as part of larger javascript processing flow?

In my client-side code, I: Populate hidden fields in a form. Wait for the user to fill in fields such as Name, Email. The user clicks [Submit] or [Cancel]. Assuming [Submit] was clicked, I assemble ...
0
votes
2answers
174 views

How to abort remote Jquery Validator method upon submit

My site is http://www.extrabux.com/users/login When a user is logging in, Jquery Validate plugin uses a "remote" function to check whether the provided email address exists in our database as a user. ...
2
votes
2answers
234 views

ASP.NET MVC3 Client side validation without form tag

I have a view which contains some input fields. They are bound to a viewmodel. They also have validation messages. But the view doesn't have a form tag (neither Ajax.BeginForm nor Html.BeginForm). ...
1
vote
1answer
798 views

Client validation in partial view that is rendered in jquery dialog, without Unobtrusive

I have login partial view in jquery dialog box.when I click on "Login" button with empty textboxes, error should be shown, but it goes with null value to server and get this error. I want to use ...
2
votes
3answers
96 views

How to turn off response caching in remote jQuery validation?

I have such problem: I'm using jQuery validation plugin to check login credentials. If user enters incorrect email but correct password for this user and push submit - validation fails. Then user ...
0
votes
0answers
72 views

How to run remote validation function everytime user changes one of two related fields ?( jQuery validation plugin )

I have login form with remote function. Its behaviour is strange for, maybe because of my jQuery acknowledges. First scenario: validation is working ok, when user enter correct email(for user) and ...
1
vote
1answer
177 views

php jquery, validate remote , array

I have some problems to run the following code, the js: $(document).ready(function(){ $.validator.addMethod("name", function(value, element) { return $("#identiPIC_selected_0").val() !== '' ...
0
votes
0answers
131 views

Jquery validate - validate 1 field that depend on 4 fields

I have a form that I am trying to validate. This form has 3 drop down list fields for birth date (year, month and day) and a drop down list for province. I want to perform remote jquery validation on ...
0
votes
0answers
633 views

Jquery Validate Plugin, Remote Validation with Custom Error Message

I'm having a form with a SELECT field (college_id), which I am trying to validate. I am using the JQuery Validate Plugin and trying to use it's "remote" option. HTML: <form id="registration-form" ...
1
vote
1answer
341 views

jquery validation plugin custom method ajax multiple params

I'm trying to add a custom validation method to the jquery-validation plugin. With given countrycode, zip and city, i call a php-script via ajax to check if this combination exists and if so, it gives ...
2
votes
2answers
435 views

jQuery validation remote ajax rule error with validation

I am having difficulty trying to get my field to validate using the remote rule with jQuery Validation. It is making the ajax call fine and passing the correct data. The Web service is operating ...
0
votes
1answer
717 views

Ajax submit after validation (jQuery Mobile + Validator)

I'm having trouble getting this to work. It validates the fields as expected, but no matter what I try, I can't properly hook the submit. Here's my form: <form action="" id="m-frm-contact_us" ...
0
votes
3answers
316 views

Submit form with at least one textbox value entered US Phone Number or International Number - jQuery Validate Plugin

What I like to do is have at ONE text box value entered in order for the form to submit. I have two text boxes that are "US phone number" and "international phone number". I'm toggling back and forth ...
1
vote
1answer
1k views

Better way to code jquery validate ajax submit

I started out with this code for submitting a form using the jQuery ajax method (which is working without issue) $( function() { //bind an event handler to the submit event for the appointment form ...
2
votes
2answers
2k views

jQuery unobtrusive validation ignores “cancel” class on submit button if used in Ajax form

I am trying to implement optional client side validation using ASP.NET MVC 4, unobtrusive jQuery validation, unobtrusive ajax This works fine Following pictures show what I mean with optional ...
0
votes
1answer
117 views

Two near-identical forms functioning differently

I have two nearly identical forms on two different pages which take in a user's name and email address. When I press the submit button, both of them call a validator, which works correctly, and then ...
0
votes
2answers
446 views

JQuery validation plugin keeps refreshing page

I'm using the validation plugin for jQuery to validate a form before making an Ajax call, but for some reason every time I submit the form the page refreshes. Here is my validation function: //Invite ...
0
votes
1answer
103 views

jQuery Validation plugin add/remove class on error

I am trying to make a form with validation with the jQuery plugin validation(). instead of showing a message as the error, I want to add a class to my existing input. I was searching for solutions ...
2
votes
1answer
297 views

Getting jQuery Validation Plugin to work with WordPress form

I am running into problems while making a front-end user registration form as part of a custom WordPress theme, and I need to be able to check if an e-mail exists with an ajax request before allowing ...
0
votes
1answer
2k views

Initialize jQuery validate() function on multiple dynamically added forms

It is has been suggested that it is best to initialize a $('#form').validate({}) function on page load rather than on a click event: jquery.form/validate plugin only allow submit if input is changed ...
0
votes
1answer
580 views

jquery.form/validate plugin only allow submit if input is changed

I'd like to use the jQuery.Form/Validate plugins to only allow my form to be submitted if any of inputs were actually changed. There is callback logic for this using beforeSubmit: : ...
1
vote
2answers
4k views

Using the remote function of jquery validation

I'm trying to figure out how I can turn this: $('#username').blur(function(){ $.post('register/isUsernameAvailable', {"username":$('#username').val()}, function(data){ ...
0
votes
1answer
659 views

Jquery Validation Remote: displaying 1 as error message

I am trying to validate username field in my form using jquery validation plugin. I have the following custom rules. username: { required: true, minlength: 2, ...
0
votes
1answer
828 views

jquery ajax form submission issue - form data is submitted but returns error not success

Update From Fiddler 2: I can see data sent. Also they show up in the other site's database. The response from the other domain/server seems incorrect: Response sent 38 bytes of Cookie data: ...
0
votes
1answer
368 views

JQuery Validation: Dynamic form not validating

I have a form which is being generated based on a category selection by user. For every category there are some dynamic fields which I append into HTML using jQuery get call. Problem: Validation ...

1 2 3