You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Error: $.Event is not a function Created Sep 29, 2009

This thread is solved

Views: 1518     Replies: 2     Last reply Oct 13, 2009  
You must login first before you can use this feature

getnorthern

Posts: 2

Registered:
Sep 29, 2009

Error: $.Event is not a function

Posted: Sep 29, 2009

I'm receiving the following error when an input receives focus (and triggers the tooltip):

Error: $.Event is not a function.
Line: 229

Can anyone help? I'm afraid I'm unable to provide a live example, but I wondered if anyone else has come across the same problem.

Thanks,

John.

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1867

Registered:
Nov 16, 2007

» Error: $.Event is not a function

Posted: Oct 5, 2009

Reply to: Error: $.Event is not a function, from getnorthern
could not reproduce the error. I really would like to see your test page.

Razunter

Posts: 2

Registered:
Oct 13, 2009

» » Error: $.Event is not a function

Posted: Oct 13, 2009

Reply to: » Error: $.Event is not a function, from tipiirai
Old jQuery:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script src="http://cdn.jquerytools.org/1.1.2/tiny/jquery.tools.min.js"></script>
<script type="text/javascript">
$(document).ready(function() { 
						   $('.a1').tooltip();
						   });
</script>
</head>
<body>
<div class="a1">aaaa</div>
<div class="tooltip">abc</div>
</body>
</html>

In my project I can't use jQuery 1.3, so I can't use new Tooltip :(