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.
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 div1
and div2
you would use $("#div1")
and $("#div2")
respectively
if this is still unclear then please show us some code to better understand what you are doing.