I'm new to jQuery as well. In other languages, you would take the string that holds all of the emails and do a 'split' on commas. This should give you an array where each element is an individual email. >From there, just validate each element. How to do this in jQuery, someone more experienced than I may be able to help with.
On Feb 13, 11:28 am, roryreiff <roryre...@gmail.com> wrote: > Hi there, > > I am using the Validation plugin to validate a form that emails the > current pages URL to the recipients entered in to the "email to" > field. I want to validate that field for multiple emails addressed > separated by commas...and ideas on how to do this? I'm a bit new to > jQuery so I am a little confused how to approach this. I was thinking > somehow altering the email function so that is parses the input and > does a for each on every email address. Is this correct thinking? Is > there an easier way to do this? > > Thanks,