[jQuery] Validating and submitting form onKeyPress

2009-12-20 Thread Andre Polykanine
Hello everyone, I'm using the Validation plugin by Jörn. The form validates and submits correctly, everything is OK but... I want it to be validated and submitted by pressing Ctrl+Enter, also. So, when I go to the page and press the key combination, it does submit but doesn't validate. Where do I

[jQuery] validating

2009-12-10 Thread newbieal
I have a jsp page that contains 2 set of check boxes (these are generated with a for loop, so values are assigned at runtime). I want to make sure that at least one check box is selected from either set. I have this for validation: $(document).ready( function() { $("#aForm").validate({

[jQuery] Validating Australian ABN numbers

2009-10-15 Thread Sam
ABN - Australian Business Numbers I knew they had to be numeric and 11 digits. Then i found this: http://www.ato.gov.au/businesses/content.asp?doc=/content/13187.htm&pc=001/003/021/002/001&mnu=610&mfp=001/003&st=&cy=1 Which explains quite nicely how to validate a number. So I thought I would sha

[jQuery] Validating Submit from Image Button (Validate)

2009-09-21 Thread Dakuwan
I am having the following issue, when I try using an image to post I cannot get the validation to run. When I click the button the form submits and nothing is checked. I've been searching all over the web and cant find any help. One way of coding doesnt work and the other does. I have included

[jQuery] Validating autosuggest output

2009-07-24 Thread anush
I have a form with a location field. The selection of the location value happens through the autosuggest box. When I choose the location, I also show the location information below the field using the show/ hide feature. If the user is choosing the location via dropdown, I have no issues. But if

[jQuery] validating on blur without submit

2009-07-10 Thread Ham
I could very well be totally missing this, but is there a way to make the fields invalid by default? I would like the fields form fields to validate on blur even if no data is entered. For example, a name field that the user focuses on then blurs, but doesn't enter a character would validate.

[jQuery] Validating Ajax generated forms.

2009-04-21 Thread CG
Hello, I am currently working on a very form heavy site. I am trying to validate a form that has been generated from an Ajax call. I am using the Live function for many things on the site but can't seem to get the form validation to bind, I also tried lazy loading the script but that didn't seem

[jQuery] Validating / Masking variable length inputs. Price,Weight etc...

2009-04-02 Thread Dayjo
Hi, I've been looking around for a while for a simple and fast solution to input field masking with optional lengths, for instance to mask a 'price' field. I want to be able to offer the following mask (where ^ means no limit to the length of the following characters): ^9.99 So then the input

[jQuery] Validating a group of elements together

2009-03-18 Thread anush
Is it possible to validate all the elements defined in a group together ? groups{ x: "a1 b1 c1" } I would like to validate a1, b1, c1 and display the error message until all the elements in a group become valid. - Anush

[jQuery] Validating multiple inputs as one (birth date)

2009-03-04 Thread bill.shib...@gmail.com
So I have a form that requires the user to enter their birth date. It is set up as three separate inputs. It looks a little something like this: Birth Date / MM

[jQuery] Validating reCaptcha using JQuery before sending via $.post

2009-01-26 Thread osu
Hi, Is there a way to validate a visitors reCaptcha input using JQuery before sending the form? I can't see any way I can do it. Can anytone help? Thanks

[jQuery] validating form with server-side code via ajax (progressive enhancement)

2008-12-18 Thread Alex
Just bumping in hopes of any fresh ideas on this.

[jQuery] Validating divs depending on show / hide [validate]

2008-10-29 Thread C
I'm currently using show/hide in a form, allowing users to add more fields to the form. The problem I'm having is when the divs are hidden they are still validated. How can I prevent the hidden (.hide) fields from being validated? You can see the page I'm working on here. http://www.evisions.co

[jQuery] Re: Jquery validating the data that is there in the div tag..

2008-07-17 Thread nood
First of all you need to get the HTML correct. There are so many errors in your code it won't work even with correct jquery. Very quickly... You need to declare the type as an accepted type and give it a name. etc You've added spaced between attributes and values is correct but also needs ac

[jQuery] Jquery validating the data that is there in the div tag..

2008-07-16 Thread konda
I need to validate the data on the onClick. I will pass the div id to validateDiv method. In the above scenario I need to validate only the data that is there in

[jQuery] Validating a form in a tab

2008-07-11 Thread Bruce MacKay
Hello folks, I'm finding it difficult to get jquery.validate to work in a form that is within a tab. My code is: $("#editorbox").html(responseText).fadeIn(500); $("#editor > ul").tabs({selected: 1,fxFade: true, fxSpeed: "fast"}).bind('tabsload', function(e, ui) { var errors = $('div.er

[jQuery] validating dynamically generated data

2008-05-06 Thread jpl80
I need to validate some dynamically generated form data to ensure clients can't order more of something than we have in stock. I can't set static comparisons. Here is my html: manual 1 90 Qty: manual 2 48 Qty:

[jQuery] Validating checkboxes

2007-10-25 Thread wattaka
Hi all, how does one validate that a user checks at least one checkbox from a group of checkboxes. I have seen the example on Jörns site, but the example has the same names for all checkboxes, I cant have the same name for all checkboxes due to the backend code. Thanks