I am using jquery having two panel in my form one is Registration panel and another is login panel.
I want to validate them individually.
Right now tow panel validating at same time.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
generally having a different ID for each panel (or I would call it div) and assigning validating code to each one separately should do.. for IDs
div1anddiv2you would use$("#div1")and$("#div2")respectivelyif this is still unclear then please show us some code to better understand what you are doing.