I built my own Jquery tooltip function, it worked for 3 months really good, but now (I don’t know why) I get an error: "e is not defined"
Can anybody tell me why?
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.
You define your code to use variable
eventto receive the event object:You initially use the
eventvariable:However you then change to using the variable
e:Unsurprisingly, this doesn’t work, because you have never defined
e.