• Home
Blue Orange Green Pink Purple

Jquery Tooltips (qTip)

Posted in Jquery. on Monday, September 14th, 2009 by admin Tags: Jquery, qtip, tooltips
Sep 14

qTip is Jquery’s Plug in that was created by Craig Thompson, it’s very cool and simple tooltips, this post will  guide you how to simple implement qTip within few steps, first of all you must download the whole code from http://craigsworks.com/projects/qtip/download/.

Put this script before </head>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery.qtip-1.0.0-rc3.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
   $('ul.contain li a[title]').qtip({
      position: {
         corner: {
            target: 'bottomMiddle',
            tooltip: 'topMiddle'
         }
      },
      style: {
         name: 'dark',
         padding: '7px 13px',
         width: {
            max: 210,
            min: 0
         },
         tip: true
      }
   });
});
</script>

Put this code inside <body>

1
2
3
4
<ul class="contain">
 <li><a title="Give content in your tooltips their own tooltips!" href="#">Hello World!</a></li>
 <li><a title="Create a modal dialog effect for your tooltips, just like Boxy" href="#">I'm qTip!</a></li>
</ul>

In this case i just used a simple option for the object., there’re still have serveral featured for this qtip such as positon of tooltip and themes, for more info please visit http://craigsworks.com/projects/qtip/docs/tutorials

DEMO | DOWNLOAD

VN:F [1.6.5_908]
please wait...
Rating: 8.0/10 (2 votes cast)
VN:F [1.6.5_908]
Rating: +1 (from 1 vote)

Leave a Reply

Doyyy.com

  • Categories
    • Download
    • Graphics
    • Javascript
    • Jquery
    • PHP, MySql
  • Recent Comments
    • yapapanyatt on PHP Thumnail Class
    • Brown on PHP Thumnail Class
    • PreownofFroke on 15 Top PHP Coding Tutorials, Tips and Tricks
    • roocokegect on PHP Thumnail Class
    • DiergeniB on 15 Top PHP Coding Tutorials, Tips and Tricks
  • Archives
    • December 2009
    • September 2009
  • Search






  • Home

© Copyright Doyyy.com. All rights reserved.
Wordpress Themes by DreamTemplate

Back to Top