Qtip is not working for me?
Posted
by vinoth
on Stack Overflow
See other posts from Stack Overflow
or by vinoth
Published on 2010-06-01T11:36:53Z
Indexed on
2010/06/01
11:43 UTC
Read the original article
Hit count: 302
This is my coding for Qtip.But it wont be work .I dont know why?
<!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>Qtip</title>
<script type="text/javascript" src="/jquery demos/jquery1.4.2.js"></script>
<script type="text/javascript" src="jquery.qtip-1.0.0-rc3.js"></script>
<script>
$(document).ready(function()
{
// Match all link elements with href attributes within the content div
$("#content a[href]").qtip({
content: 'This is an active list element',
show: 'mouseover',
hide: 'mouseout'
});
});
</script>
</head>
<body>
<a href='#' id="content" class="qtip">sdfsfsd</a>
</body>
</html>
Thanks in advance?
© Stack Overflow or respective owner