I have some jQuery code which is throwing a really weird error. Google Chrome calls the error Uncaught TypeError: Illegal invocation.I don't know how to solve it.Here is my code..
jquery-ajax
$.ajax(
{
type:"POST",
url:"http://localhost/registrationvalidation.php",
data:{ftname:fname,ltname:lname,gend:gender,emailid:email,dt:date,desnation:designation,usrname:uname,pswd1:pwd1,pswd2:pwd2},
success:function(data)
{
if(data=="ok")
{
alert(data);
return true;
}
else
{
alert(data);
return false;
}
}
});
Friends can u tell me the reason for this error.
});lines in it), but that would cause a syntax error, not an illegal invocation. Please quote your actual code (copy and paste, not retyped) and quote the actual error message (copy and paste), as well as telling us which line is the line the error references. – T.J. Crowder Dec 10 '12 at 8:40