[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-24 Thread Kuo Yang
it(","); alert(result); for(var i = 0;i < result.length;i++) if(!validateEmail(result[i])) return false; return true; } On Fri, Jul 24, 2009 at 1:14 PM, Mohd.Tareq wrote: > Hi Kuo Yang, * > * > *Thanks for your reply.* > *I am doing the same

[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-23 Thread Kuo Yang
You can split the Emails with the comma, and then validate them one by one. On Thu, Jul 23, 2009 at 9:49 PM, Mohd.Tareq wrote: > > Hi Guys, > > Can any one tell me validation ' *Email Validation for multiple emails > (comma separated)* ' for textarea. > > I am writing Regular expression but not

[jQuery] Re: Combining jQuery Objects

2009-07-23 Thread Kuo Yang
Do you mean append() or appendTo() ? On Thu, Jul 23, 2009 at 12:17 PM, NeilM wrote: > > Does anyone know if it is possible to join two jQuery objects to make > a new object. For example... > > var e1 = $("#firstObject"); > var e2 = $("#secondObject"); > > var combined = e1.add(e2); // This i