<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Superdit.com &#187; plugin</title>
	<atom:link href="http://superdit.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://superdit.com</link>
	<description>blogging, design, tech, and web</description>
	<lastBuildDate>Sat, 31 Mar 2012 20:40:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JQuery Plugin For Rotating Image</title>
		<link>http://superdit.com/2011/12/04/jquery-plugin-for-rotating-image/</link>
		<comments>http://superdit.com/2011/12/04/jquery-plugin-for-rotating-image/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 06:50:12 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rotate]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=9406</guid>
		<description><![CDATA[Creating a jquery plugin is easier than it sound, first time I heard about creating 3rd party plugin sounds scary, maybe need more deeper understanding about the platform, but not in jquery. Well I just feel something missing if I have been using jquery for a while not to creating a plugin. Few month ago<a href="http://superdit.com/2011/12/04/jquery-plugin-for-rotating-image/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Creating a jquery plugin is easier than it sound, first time I heard about creating 3rd party plugin sounds scary, maybe need more deeper understanding about the platform, but not in jquery. Well I just feel something missing if I have been using jquery for a while not to creating a plugin.</p>
<p><a title="JQuery Plugin For Rotating Image" href="http://superdit.com/2011/12/04/jquery-plugin-for-rotating-image/" target="_blank"><img class="alignnone size-full wp-image-9412" title="jquery image rotate plugin" src="http://superdit.com/wp-content/uploads/2011/12/jquery_rotate.jpg" alt="jquery image rotate plugin" width="550" height="270" /></a></p>
<p>Few month ago I have created a simple tutorial to <a title="Rotating Image Using JQuery" href="http://superdit.com/2011/01/06/rotating-image-using-jquery/" target="_blank">rotating image using jquery</a>, now it would be nice if  I can used as a plugin, and now it a chance to learning simple jquery plugin.<span id="more-9406"></span></p>
<h6 style="text-align: center;"><a href="http://demo.superdit.com/jquery/rotate.html" target="_blank">demo</a> | <a href="http://www.box.com/s/bx9fhe4g2gox40e28hbv" target="_blank">download</a></h6>
<p>Now just straight to the plugin code, this is the code I put on file <em>jquery.rotate.js</em></p>
<pre class="brush: jscript; title: ; notranslate">
(function( $ ) {
    $.fn.myrotate = function() {
        var img = this.find(&quot;img&quot;);
        var imgpos = img.position();
        var x0, y0;

        $(window).load(function() {
            img.removeAttr(&quot;width&quot;);
            img.removeAttr(&quot;height&quot;);

            x0 = imgpos.left + (img.width() / 2);
            y0 = imgpos.top + (img.height() / 2);
        });

        var x, y, x1, y1, drag = 0;

        img.css({
            &quot;cursor&quot;: &quot;pointer&quot;,
            &quot;position&quot;: &quot;relative&quot;
        });

        img.mousemove(function(e) {
            x1 = e.pageX;
            y1 = e.pageY;
            x = x1 - x0;
            y = y1 - y0;

            r = 360 - ((180/Math.PI) * Math.atan2(y,x));

            if (drag == 1) {
                img.css(&quot;transform&quot;,&quot;rotate(-&quot;+r+&quot;deg)&quot;);
                img.css(&quot;-moz-transform&quot;,&quot;rotate(-&quot;+r+&quot;deg)&quot;);
                img.css(&quot;-webkit-transform&quot;,&quot;rotate(-&quot;+r+&quot;deg)&quot;);
                img.css(&quot;-o-transform&quot;,&quot;rotate(-&quot;+r+&quot;deg)&quot;);
            }
        });

        img.mousedown(function() {
            if (drag == 0) {
                drag = 1;
                img.css(&quot;-webkit-box-shadow&quot;, &quot;0 0 5px #999&quot;);
                img.css(&quot;-moz-box-shadow&quot;, &quot;0 0 5px #999&quot;);
                img.css(&quot;box-shadow&quot;, &quot;0 0 5px #999&quot;);
            } else {
                drag = 0;
                img.css(&quot;-webkit-box-shadow&quot;, &quot;0 0 2px #999&quot;);
                img.css(&quot;-moz-box-shadow&quot;, &quot;0 0 2px #999&quot;);
                img.css(&quot;box-shadow&quot;, &quot;0 0 2px #999&quot;);
            }
        });

        img.mouseleave(function() {
            drag = 0;
        });
    };
})( jQuery );
</pre>
<p>The idea is similar from before, to get the image center point and get the cursor coordinate using javascript Math we can find the radian, and rotate the image using CSS. Here are a sample usage</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;&lt;/title&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
    &lt;script src=&quot;jquery-1.6.4.min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;jquery.rotate.js&quot;&gt;&lt;/script&gt;
    &lt;script&gt;
        $(function() {
            $(&quot;#content&quot;).myrotate();
            $(&quot;#circle&quot;).myrotate();
        });
    &lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id=&quot;container&quot;&gt;
        &lt;div id=&quot;content&quot;&gt;
            &lt;img src=&quot;img.jpg&quot;/&gt;
        &lt;/div&gt;

        &lt;div id=&quot;circle&quot;&gt;
            &lt;img src=&quot;img.jpg&quot;/&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><a href="http://demo.superdit.com/jquery/rotate.html" target="_blank"><img class="alignnone size-full wp-image-9416" title="jquery rotate plugin" src="http://superdit.com/wp-content/uploads/2011/12/jquery_rotate_thumb.jpg" alt="jquery rotate plugin" width="550" height="357" /></a></p>
<p>There are some problem when you are getting image width and height directly from html &lt;img/&gt; tag in webkit browser, even when we are using jquery, there are a thread from <a title="Get real image width and height with Javascript in Safari/Chrome?" href="http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome" target="_blank">stackoverflow </a>offer many solution for this.</p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/12/04/jquery-plugin-for-rotating-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slide Navigation Using JQuery With Easing Plugin</title>
		<link>http://superdit.com/2011/09/07/slide-navigation-using-jquery-with-easing-plugin/</link>
		<comments>http://superdit.com/2011/09/07/slide-navigation-using-jquery-with-easing-plugin/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 00:26:20 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[easing]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=8492</guid>
		<description><![CDATA[Few days ago I browse the apple official site and looking some mac product, the navigation at apple mac page are using an easing effect, it separating each product by the category, I love the effect when user click on the navigation it like the products appear and disappear one by one, with the easing<a href="http://superdit.com/2011/09/07/slide-navigation-using-jquery-with-easing-plugin/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Few days ago I browse the apple official site and looking some mac product, the navigation at apple mac page are using an easing effect, it separating each product by the category, I love the effect when user click on the navigation it like the products appear and disappear one by one, with the easing effect on the end movement, like bouncing on the vertical line.</p>
<p><a title="Slide Navigation Using JQuery With Easing Plugin" href="http://superdit.com/2011/09/07/slide-navigation-using-jquery-with-easing-plugin/" target="_blank"><img class="alignnone size-full wp-image-8614" title="apple mac product page" src="http://superdit.com/wp-content/uploads/2011/09/apple-mac.jpg" alt="" width="550" height="250" /></a></p>
<p>If you see the source code on apple page, seems they are still using prototype.js, once are the most popular javascript framework, before the appearance of  jquery. In this post I want to create something like the apple mac navigation menu using jquery easing plugins.<span id="more-8492"></span></p>
<p style="text-align: center;"><strong><a href="http://demo.superdit.com/jquery/slide_easing" target="_blank">Demo</a> | <a title="JQuery Slide Easing Download" href="http://www.box.net/shared/ibmafblaif6gh3n2n1vk" target="_blank">Download</a></strong></p>
<p>The <a title="Apple Mac" href=" http://www.apple.com/mac/" target="_blank">apple mac</a> page not only dealing with the effect but also with the selected navigation, and for the easing effect I use <a title="jQuery Easing Plugin (version 1.3)" href="http://gsgd.co.uk/sandbox/jquery/easing/" target="_blank">jQuery easing plugin</a>, although it is an old plugin, but it still work or maybe you can use jquery ui bounce effect for the alternative.</p>
<h5>HTML</h5>
<p>The html code are mostly the same as when you are create an image slideshow using the the overflow css property, and syncronize the nave of product container and navigation so it can be easily manipulated by jquery.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;container&quot;&gt;
    &lt;div id=&quot;container_wide&quot;&gt;
        &lt;div class=&quot;product_container&quot; id=&quot;product_browser&quot;&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/Chrome.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/Safari.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/Firefox.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/IE.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/Maxthon.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/browser/Opera.png&quot;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&quot;product_container&quot; id=&quot;product_apple&quot;&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/apple/iMac.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/apple/MacBook.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/apple/MacMini.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/apple/iPhone.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/apple/Macpro.png&quot;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div class=&quot;product_container&quot; id=&quot;product_construction&quot;&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/construction/01.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/construction/02.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/construction/03.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/construction/04.png&quot;&gt;&lt;/a&gt;
        &lt;/div&gt;
         &lt;div class=&quot;product_container&quot; id=&quot;product_cake&quot;&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/01.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/02.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/03.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/04.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/05.png&quot;&gt;&lt;/a&gt;
            &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;img/cake/06.png&quot;&gt;&lt;/a&gt;
        &lt;/div&gt;
        &lt;div style=&quot;clear:both&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;nav&quot;&gt;
    &lt;a href=&quot;#&quot; class=&quot;product_nav&quot; id=&quot;nav_browser&quot;&gt;Browser&lt;/a&gt;
    &lt;a href=&quot;#&quot; class=&quot;product_nav&quot; id=&quot;nav_apple&quot;&gt;Apple&lt;/a&gt;
    &lt;a href=&quot;#&quot; class=&quot;product_nav&quot; id=&quot;nav_construction&quot;&gt;Construction&lt;/a&gt;
    &lt;a href=&quot;#&quot; class=&quot;product_nav&quot; id=&quot;nav_cake&quot;&gt;Cake&lt;/a&gt;
&lt;/div&gt;
</pre>
<h5>CSS</h5>
<pre class="brush: css; title: ; notranslate">
* {
    font-family: Arial, &quot;Free Sans&quot;;
}
.container {
    border: 5px solid #0099cc;
    width: 700px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
    padding: 10px 0;
    -webkit-border-radius: .3em .3em 0 0;
    -moz-border-radius: .3em .3em 0 0;
    border-radius: .3em .3em 0 0;
}
#container_wide {
    width: 2800px;position: relative;
}
.product_container {
    text-align: center;
    width: 700px;
    float: left;
    position: relative;
}
.product_container a {
    margin: 0 12px;
    position: relative;
}
.nav {
    width: 700px;
    background: #0099cc;
    margin: 0 auto;
    text-align: center;
    border: 5px solid #0099cc;
    border-bottom-width: 10px;
    -webkit-border-radius: 0 0 .3em .3em;
    -moz-border-radius: 0 0 .3em .3em;
    border-radius: 0 0 .3em .3em;
}
.nav a {
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 10px;
    font-weight: bold;
    text-decoration: none;
}
.nav a:hover {
    color: #e3e3e3;
}
</pre>
<h5>JQuery</h5>
<p>The jquery code will move each item one by one from it specific product container with a time delay, when you are creating image slideshow simply just move the div container, and the image will change.</p>
<p><img class="alignnone size-full wp-image-8630" title="jquery easing slide mockup" src="http://superdit.com/wp-content/uploads/2011/09/jquery-easing-slide-mockup.png" alt="jquery easing slide mockup" width="550" height="159" /></p>
<p>But in this case we cannot do that cause if we move the container all the item will be move as well, but the container still needed to make the product alignment tidy.</p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function() {
    var displayed = &quot;product_browser&quot;;
    var cindex = 0; // current index (displayed product)

    function loopMoveLeft(el, move) {
        if (el.length == 1) {
            setTimeout(function() {
                el.animate({ left: move }, {
                    duration: 'slow',
                    easing: 'easeOutBounce'
                });
                loopMoveLeft(el.next(), move);
            }, 100);
        }
    }

    function loopMoveRight(el, move) {
        if (el.length == 1) {
            setTimeout(function() {
                el.animate({ left: move }, {
                    duration: 'slow',
                    easing: 'easeOutBounce'
                });
                loopMoveRight(el.prev(), move);
            }, 100);
        }
    }

    function slideItem(obj_el) {
        var product = $(obj_el).attr(&quot;id&quot;).replace(&quot;nav_&quot;, &quot;&quot;);
        var contid = 'product_' + product;

        // current displayed element
        var elFirst = $(&quot;#&quot;+displayed+&quot; a:first-child&quot;);
        var elLast = $(&quot;#&quot;+displayed+&quot; a:last-child&quot;);
        var total_el = $(&quot;#&quot;+displayed).children().length;

        var index = $(obj_el).index();

        // new element to displayed
        var el_f = $(&quot;#&quot;+contid+&quot; a:first-child&quot;);
        var el_l = $(&quot;#&quot;+contid+&quot; a:last-child&quot;);
        var total_new = $(&quot;#&quot;+contid).children().length;

        var movement = -700 * index;

        if (cindex &gt; index) {
            loopMoveRight(elLast, movement);
            setTimeout(function() {
                loopMoveRight(el_l, movement)
            }, (total_el + 1) * 100);
        } else if (cindex &lt; index) {
            loopMoveLeft(elFirst, movement);
            setTimeout(function() {
                loopMoveLeft(el_f, movement)
            }, (total_el + 1) * 100);
        }

        cindex = index;
        displayed = contid;

        return (total_el + 5 + total_new) * 100;
    }

    var timeout;

    $(&quot;.product_nav&quot;).click(function() {
        $(&quot;.product_nav&quot;).unbind('click');
        timeout = slideItem(this);

        // prevent abusive click
        setTimeout(function() {
            $(&quot;.product_nav&quot;).bind('click', function() {
                timeout = slideItem(this);
            });
        }, timeout);
    });
});
</pre>
<p style="text-align: left;">You can see on code above this example mostly using the <em>setTimeout </em>to make each item move in sequence, the bind and unbind used for preventing abusive click from user and it still using <em>setTimeout</em> too.</p>
<p style="text-align: center;"><a href="http://demo.superdit.com/jquery/slide_easing" target="_blank"><img class="size-full wp-image-8633 aligncenter" title="jquery easing navigation demo" src="http://superdit.com/wp-content/uploads/2011/09/demo.png" alt="jquery easing navigation demo" width="550" height="121" /></a></p>
<p style="text-align: center;"><strong><a href="http://demo.superdit.com/jquery/slide_easing" target="_blank">Demo</a> | <a title="JQuery Slide Easing Download" href="http://www.box.net/shared/ibmafblaif6gh3n2n1vk" target="_blank">Download</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/09/07/slide-navigation-using-jquery-with-easing-plugin/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Easy JQuery Circular Gallery Using RadMenu Plugin</title>
		<link>http://superdit.com/2011/06/24/easy-jquery-circular-gallery-using-radmenu-plugin/</link>
		<comments>http://superdit.com/2011/06/24/easy-jquery-circular-gallery-using-radmenu-plugin/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 10:45:15 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[radmenu]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=6993</guid>
		<description><![CDATA[Today post, let&#8217;s playing a little code with JQuery and JQuery RadMenu Plugin, cause lately I&#8217;ve been thinking about creating circular image gallery my self, and my search stop here for a moment when finding this cool plugins. This plugin is really cool you can creating a circle from many html element that you defined,<a href="http://superdit.com/2011/06/24/easy-jquery-circular-gallery-using-radmenu-plugin/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Today post, let&#8217;s playing a little code with JQuery and JQuery RadMenu Plugin, cause lately I&#8217;ve been thinking about creating circular image gallery my self, and my search stop here for a moment when finding this cool plugins.</p>
<p><a title="Easy JQuery Circular Gallery Using RadMenu Plugin" href="http://superdit.com/2011/06/24/easy-jquery-circular-gallery-using-radmenu-plugin/"><img class="alignnone size-full wp-image-7598" title="JQuery Circle Gallery" src="http://superdit.com/wp-content/uploads/2011/06/JQueryCircleGalleryThumbs.jpg" alt="JQuery Circle Gallery" width="586" height="200" /></a></p>
<p>This plugin is really cool you can creating a circle from many html element that you defined, which means you don&#8217;t have to create a formula to set all the element position to create a circle form.<span id="more-6993"></span></p>
<p><strong>Plugin: </strong><a title="JQuery RadMenu Plugin" href="http://tikku.com/jquery-radmenu-plugin" target="_blank">RadMenu</a></p>
<h5>All Code</h5>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;JQuery Circle Gallery&lt;/title&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;jquery-1.6.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;jQuery.radmenu.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
    jQuery(document).ready(function() {

        var posc = $(&quot;#radial_container&quot;).position();
        var left = $(window).width() / 2;

        if ($.browser.opera) {
            $(&quot;#big&quot;).css({&quot;left&quot;: left - 122, &quot;top&quot;: posc.top - 13});
        } else {
            $(&quot;#big&quot;).css({&quot;left&quot;: left - 122, &quot;top&quot;: posc.top + 3});
        }

        jQuery(&quot;#radial_container&quot;).radmenu({
            listClass: 'list',
            itemClass: 'item',
            radius: 220,
            animSpeed:800,
            centerX: 0,
            centerY: 150,
            selectEvent: &quot;click&quot;,
            onSelect: function($selected) {
                var imgindex = $selected.index() + 1;
                $(&quot;.my_class&quot;).removeClass(&quot;selected&quot;);
                $(&quot;.img&quot;+imgindex).addClass(&quot;selected&quot;);
                $(&quot;#big&quot;).css(&quot;background-image&quot;, &quot;url('images/&quot;+imgindex+&quot;.jpg')&quot;);
            },
            angleOffset: 0
        });

        jQuery(&quot;#radial_container&quot;).radmenu(&quot;show&quot;);
    });
    &lt;/script&gt;
    &lt;style&gt;
    body{
        background: #f3f3f3;
    }
    #radial_container {
        position:relative;
        margin: 0 auto;
        top: 80px;
        height: 20px;
        width: 20px;
    }
    .radial_div_item {
    }
    .radial_div_item.active {
        z-index: 100;
    }
    .my_class {
        cursor: pointer;
        height: 75px;
        width: 75px;
        border: 5px solid #333;
        -moz-border-radius: 45px;
        -webkit-border-radius: 45px;
        border-radius: 45px;
        -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,.5);
        -moz-box-shadow: 1px 1px 10px rgba(0,0,0,.5);
        box-shadow: 1px 1px 10px rgba(0,0,0,.5);
        position: relative;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        font-family: &quot;Arial&quot;;
    }
    .my_class:hover {
        border-color: #0066cc;
    }
    .my_class:active {
        -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,.5);
        -moz-box-shadow: 1px 5px 1px rgba(0,0,0,.5);
        box-shadow: 1px 1px 5px rgba(0,0,0,.5);
        top: 2px;
        border-color: #e3e3e3;
    }
    .img1 { background-image: url(&quot;images/thumbs/1.jpg&quot;); }
    .img2 { background-image: url(&quot;images/thumbs/2.jpg&quot;); }
    .img3 { background-image: url(&quot;images/thumbs/3.jpg&quot;); }
    .img4 { background-image: url(&quot;images/thumbs/4.jpg&quot;); }
    .img5 { background-image: url(&quot;images/thumbs/5.jpg&quot;); }
    .img6 { background-image: url(&quot;images/thumbs/6.jpg&quot;); }
    .img7 { background-image: url(&quot;images/thumbs/7.jpg&quot;); }
    .img8 { background-image: url(&quot;images/thumbs/8.jpg&quot;); }
    .img9 { background-image: url(&quot;images/thumbs/9.jpg&quot;); }
    .img10 { background-image: url(&quot;images/thumbs/10.jpg&quot;); }
    .selected {
        border-color: #0066cc;
    }

    #big {
        position: relative;
        border: 5px solid #0066cc;
        width: 300px;
        height: 300px;
        -moz-border-radius: 200px;
        -webkit-border-radius: 200px;
        border-radius: 200px;
        -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,.5);
        -moz-box-shadow: 1px 1px 10px rgba(0,0,0,.5);
        box-shadow: 1px 1px 10px rgba(0,0,0,.5);
    }

    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;radial_container&quot;&gt;
    &lt;ul class=&quot;list&quot;&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img1&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img2&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img3&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img4&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img5&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img6&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img7&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img8&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img9&quot;&gt;&lt;/div&gt;&lt;/li&gt;
        &lt;li class=&quot;item&quot;&gt;&lt;div class=&quot;my_class img10&quot;&gt;&lt;/div&gt;&lt;/li&gt;
    &lt;/ul&gt;
&lt;/div&gt;

&lt;div id=&quot;big&quot;&gt;&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p style="text-align: left;">This example only follow the original example at the plugin page, with a little style modification and added selected image on the center of the circle, just take some attention to css position for this. If you want more advance tutorial you can read <a href="http://addyosmani.com/blog/jquery-roundrr/" target="_blank">addyosmani jquery roudrr</a> blog post, he explain step by step how to create a circle form from a set of images.</p>
<p style="text-align: center;"><a class="button large blue" href="http://www.box.net/shared/qhi8oa9fcv3us7j3igue" target="_blank">Download</a> <a class="button large green" href="http://demo.superdit.com/jquery/circle_gallery/" target="_blank">Demo</a></p>
<p><a href="http://demo.superdit.com/jquery/circle_gallery/" target="_blank"><img class="alignnone size-full wp-image-7593" title="JQuery Circle Gallery Using RadMenu Plugin" src="http://superdit.com/wp-content/uploads/2011/06/JQuery-Circle-Gallery.jpg" alt="JQuery Circle Gallery Using RadMenu Plugin" width="586" height="549" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/06/24/easy-jquery-circular-gallery-using-radmenu-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Jquery Tooltip Plugins and Tutorial Collection</title>
		<link>http://superdit.com/2011/01/20/jquery-tooltip-plugins-and-tutorial-collection/</link>
		<comments>http://superdit.com/2011/01/20/jquery-tooltip-plugins-and-tutorial-collection/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 10:55:41 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=4294</guid>
		<description><![CDATA[There are so many solution that offer out there for creating tool tip based on jQuery, even in the jQuery UI milestone the tool tip has been included in the project here is the jquery ui tooltip milestone, but if you need now sure you have to use the 3rd plugins or create by yourself,<a href="http://superdit.com/2011/01/20/jquery-tooltip-plugins-and-tutorial-collection/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>There are so many solution that offer out there for creating tool tip based on jQuery, even in the jQuery UI milestone the tool tip has been included in the project here is the <a href="http://blog.jqueryui.com/2010/05/jquery-ui-19m1-tooltip/" target="_blank">jquery ui tooltip milestone</a>, but if you need now sure you have to use the 3rd plugins or create by yourself, in this post I try to collect all that I can found including the link to the step by step tutorial.</p>
<h5>Ready To Use Plugins</h5>
<p>This section is for you who want to make it done in easier and faster way, most of this plugins not explain how it inside the plugins, of course you don&#8217;t want to know right? this is why you using the plugin, just to know how to use and modify it.</p>
<h6>1. <a href="http://flowplayer.org/tools/tooltip/index.html" target="_blank">jQuery Tools Tooltip</a></h6>
<p><a title="jQuery Tool Tooltip" href="http://flowplayer.org/tools/tooltip/index.html" target="_blank"><img class="aligncenter size-full wp-image-4302" title="jQuery TOOL Tooltip" src="http://superdit.com/wp-content/uploads/2011/01/02-jQueryTOOLS-Tooltip.png" alt="jQuery TOOL Tooltip" width="540" height="200" /><span id="more-4294"></span></a></p>
<p style="text-align: left;"><a title="jQuery Tool Tooltip Demo" href="http://flowplayer.org/tools/tooltip/index.html" target="_blank">Demo</a> | <a title="jQuery Tool Tooltip Download" href="http://flowplayer.org/tools/download/index.html" target="_blank">Download</a></p>
<h6>2. <a href="http://craigsworks.com/projects/qtip/" target="_blank">qTip jQuery Plugin</a></h6>
<p>qTip is an advanced tooltip plugin for the ever popular jQuery JavaScript framework. Built from the ground up to be user friendly, yet feature rich, qTip provides you with tonnes of features like rounded corners and speech bubble tips, and it&#8217;s completely free under the MIT license.</p>
<p><a title="qTip jQuery Plugin" href="http://craigsworks.com/projects/qtip/" target="_blank"><img class="aligncenter size-full wp-image-4307" title="qTip jQuery Plugin" src="http://superdit.com/wp-content/uploads/2011/01/03-qtip.png" alt="qTip jQuery Plugin" width="540" height="200" /></a></p>
<p><a title="qtip demo" href="http://craigsworks.com/projects/qtip/demos/" target="_blank">Demo</a> | <a title="qtip download" href="http://craigsworks.com/projects/qtip/download" target="_blank">Download</a></p>
<h6>3. <a href="http://codylindley.com/blogstuff/js/jtip/" target="_blank">jTip &#8211; a jQuery Tool Tip</a></h6>
<p><a title="jTip a jQuery Tool Tip" href="http://codylindley.com/blogstuff/js/jtip/" target="_blank"><img class="aligncenter size-full wp-image-4314" title="jTip a jQuery Tool Tip" src="http://superdit.com/wp-content/uploads/2011/01/04-jTip.png" alt="jTip a jQuery Tool Tip" width="540" height="200" /></a></p>
<p><a title="jTip Demo" href="http://codylindley.com/blogstuff/js/jtip/" target="_blank">Demo</a> | <a title="jTip Download" href="http://codylindley.com/blogstuff/js/jtip/jTip.zip" target="_blank">Download</a></p>
<h6>4. <a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank">jQuery Plugin Tooltip</a></h6>
<p><a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank"><img class="aligncenter size-full wp-image-4318" title="Bassistance jQuery Tooltip Plugin" src="http://superdit.com/wp-content/uploads/2011/01/05-bassistance.png" alt="Bassistance jQuery Tooltip Plugin" width="540" height="200" /></a></p>
<p><a title="Jquery Plugin Tooltop Demo" href="http://jquery.bassistance.de/tooltip/demo/" target="_blank">Demo</a> | <a title="Jquery Plugin Tooltop Download" href="http://jquery.bassistance.de/tooltip/jquery.tooltip.zip" target="_blank">Download</a></p>
<h6>5. <a href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank">TipTip jQuery Plugin</a></h6>
<p>TipTip is a custom tooltip that behaved just like the browser tooltip, and that is exactly what TipTip does. TipTip detects the edges of the browser window and will  make sure the tooltip stays within the current window size.</p>
<p><a title="TipTip jQuery Plugin" href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank"><img class="aligncenter size-full wp-image-4319" title="TipTip jQuery Plugin" src="http://superdit.com/wp-content/uploads/2011/01/08-TipTip.png" alt="TipTip jQuery Plugin" width="540" height="200" /></a></p>
<p><a title="TipTip jQuery Plugin Demo" href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank">Demo</a> | <a title="TipTip jQuery Plugin Download" href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank">Download</a></p>
<h6>6. <a href="http://ara-abcarians.com/jquery/atooltip/#" target="_blank">aToolTip</a></h6>
<p><a href="http://ara-abcarians.com/jquery/atooltip/#" target="_blank"><img class="aligncenter size-full wp-image-4326" title="aToolTip" src="http://superdit.com/wp-content/uploads/2011/01/09-aToolTip.png" alt="aToolTip" width="540" height="200" /></a></p>
<p><a href="http://ara-abcarians.com/jquery/atooltip/#" target="_blank">Demo</a> | <a href="http://ara-abcarians.com/jquery/atooltip/downloads/aToolTip.zip" target="_blank">Download</a></p>
<h6>7. <a href="http://pupunzi.com/#mb.components/mb.tooltip/tooltip.html" target="_blank">mb Tooltip</a></h6>
<p><a href="http://pupunzi.com/#mb.components/mb.tooltip/tooltip.html" target="_blank"><img class="aligncenter size-full wp-image-4329" title="MB Tooltip" src="http://superdit.com/wp-content/uploads/2011/01/mbtooltip.png" alt="MB Tooltip" width="540" height="200" /></a></p>
<p><a href="http://pupunzi.com/#mb.components/mb.tooltip/tooltip.html" target="_blank">Demo</a> | <a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-tooltip/" target="_blank">Download</a></p>
<h6>8. <a href="http://www.vertigo-project.com/projects/vtip" target="_blank">vTip</a></h6>
<p><a href="http://www.vertigo-project.com/projects/vtip" target="_blank"><img class="aligncenter size-full wp-image-4332" title="vTip" src="http://superdit.com/wp-content/uploads/2011/01/vTip.png" alt="vTip" width="540" height="200" /></a></p>
<p><a title="vTip Demo" href="http://www.vertigo-project.com/files/vTip/example.html" target="_blank">Demo</a> | <a title="vTip Download" href="http://www.vertigo-project.com/files/vTip/vTip_v2.zip" target="_blank">Download</a></p>
<h6>9. <a href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank">Tipsy</a></h6>
<p>Tipsy is a jQuery plugin for creating a Facebook-like tooltips effect based on an anchor tag&#8217;s title attribute.</p>
<p><a href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank"><img class="aligncenter size-full wp-image-4341" title="Tipsy" src="http://superdit.com/wp-content/uploads/2011/01/tipsy.png" alt="Tipsy" width="540" height="200" /></a></p>
<p><a title="Tipsy Demo" href="http://onehackoranother.com/projects/jquery/tipsy/" target="_blank">Demo</a> | <a title="Tipsy Download" href="http://onehackoranother.com/projects/jquery/tipsy/#download" target="_blank">Download</a></p>
<h6>10. <a href="http://craigsworks.com/projects/simpletip/" target="_blank">Simpletip</a></h6>
<p>Simpletip is a plugin for the popular jQuery JavaScript library. It allows you to create tooltips with ease on any element on the page using the power of jQuery&#8217;s selectors and event management. The tooltips can be static, dynamic, or even loaded through Ajax with a variety of different visual effects.</p>
<p><a href="http://craigsworks.com/projects/simpletip/" target="_blank"><img class="aligncenter size-full wp-image-4344" title="Simpletip" src="http://superdit.com/wp-content/uploads/2011/01/simpletip.png" alt="Simpletip" width="540" height="200" /></a></p>
<p><a title="Simpletip Demo" href="http://craigsworks.com/projects/simpletip/" target="_blank">Demo</a> | <a title="Simpletip Download" href="http://craigsworks.com/projects/simpletip/" target="_blank">Download</a></p>
<h6>Other Available Plugins</h6>
<p><a title="jGrowl" href="http://stanlemon.net/projects/jgrowl.html" target="_blank">jGrowl</a>, <a title="Html Tooltip" href="http://www.javascriptkit.com/script/script2/htmltooltip.shtml" target="_blank">htmltooltip</a>, <a title="bQuery" href="http://benchsketch.com/bquery/index.html" target="_blank">bQuery</a>, <a href="http://www.lullabot.com/files/bt/bt-latest/DEMO/index.html" target="_blank">Beauty Tips</a>, <a title="BetterTip" href="http://edgarverle.com/BetterTip/default.cfm" target="_blank">BetterTip</a>, <a title="jqTooltip" href="http://hernan.amiune.com/labs/jQuery-Tooltip-Plugin/jQuery-Tooltip-Plugin.html" target="_blank">jqTooltip</a>, <a title="EZPZ Tooltip" href="http://theezpzway.com/2009/3/17/jquery-plugin-ezpz-tooltip" target="_blank">EZPZ Tooltip</a>, <a title="clueTip" href="http://plugins.learningjquery.com/cluetip/" target="_blank">clueTip</a>, <a title="pop!" href="http://pop.seaofclouds.com/" target="_blank">pop!</a>, <a title="Hovertips" href="http://www.dave-cohen.com/node/1186" target="_blank">Hovertips</a>, <a title="Simple Tooltip" href="http://dev.mariusilie.net/content/simple-tooltip-jquery-plugin" target="_blank">Simple Tooltip</a>, <a title="Simple jQuery Tooltip" href="http://3nhanced.com/examples/tooltip/" target="_blank">Simple jQuery Tooltip</a>, <a title="Just The Tip" href="http://extrafuture.com/code/just-the-tip/" target="_blank">Just The Tip</a>, <a title="jQuery Thumbnail Popup Plugin" href="http://codebit.wordpress.com/2009/02/27/jquery-thumbnail-popup-plugin-for-greasemonkey/" target="_blank">Thumbnail Popup Plugin</a>, <a title="jQuery Tiper : Lightweight jQuery Tooltip" href="http://www.bitsntuts.com/jquery/jquery-tiper-lightweight-jquery-tooltip" target="_blank">jQuery Tiper</a>, <a title="Easiest Tooltip" href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank">Easiest Tooltip</a>, <a title="jQuery Tooltip Widget" href="http://code.google.com/p/jquery-tooltip/" target="_blank">jQuery Tooltip</a></p>
<h5><strong>Tutorials</strong></h5>
<p>This section<strong> </strong>for who want know the detail how the tooltip work, these tutorial provide some great step by step instruction</p>
<h6>1. <a title="Simple Tooltip by Soh Tanaka" href="http://www.sohtanaka.com/web-design/simple-tooltip-w-jquery-css/" target="_blank">Simple Tooltip</a> by <a title="Soh Tanaka" href="http://www.sohtanaka.com/" target="_blank">Soh Tanaka</a></h6>
<p><a title="Simple Tooltip Demo" href="http://www.sohtanaka.com/web-design/examples/element-tooltip/" target="_blank"><img class="aligncenter size-full wp-image-4362" title="Simple Tooltip w/ jQuery &amp; CSS by Soh Tanaka" src="http://superdit.com/wp-content/uploads/2011/01/www_sohtanaka_com_web-design_simple-tooltip-w-jquery-css.png" alt="Simple Tooltip w/ jQuery &amp; CSS by Soh Tanaka" width="540" height="200" /></a></p>
<p><a title="Simple Tooltip Demo" href="http://www.sohtanaka.com/web-design/examples/element-tooltip/" target="_blank">Demo</a></p>
<h6>2. <a title="Colortip by Tutorialzine" href="http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/" target="_blank">Colortip</a> by <a title="Tutorialzine" href="http://tutorialzine.com/" target="_blank">Tutorialzine</a></h6>
<p><a href="http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/" target="_blank"><img class="aligncenter size-full wp-image-4367" title="Colortips jQuery Tooltip Plugin" src="http://superdit.com/wp-content/uploads/2011/01/utorialzine_com_2010_07_colortips-jquery-tooltip-plugin.png" alt="Colortips jQuery Tooltip Plugin" width="540" height="200" /></a></p>
<p><a title="Colortip Demo" href="http://demo.tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/colortips.html" target="_blank">Demo</a> | <a title="Colortip Download" href="http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/" target="_blank">Download</a></p>
<h6>3. <a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank">Better Tooltip</a> by <a title="jon Cazier (Nettuts)" href="http://net.tutsplus.com/author/joncazier/" target="_blank">Jon Cazier (Nettuts) </a></h6>
<p><img class="aligncenter size-full wp-image-4368" title="Build a Better Tooltip With jQuery Awesomeness" src="http://superdit.com/wp-content/uploads/2011/01/07-Nettuts.png" alt="Build a Better Tooltip With jQuery Awesomeness" width="540" height="200" /></p>
<p><a href="http://d2o0t5hpnwv4c1.cloudfront.net/234_tooltip/Demo/index.html" target="_blank">Demo</a> | <a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank">Download</a></p>
<h6>4. <a title="jQuery Horizontal Tooltps Menu" href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials" target="_blank">jQuery Horizontal Tooltips Menu</a> by <a title="Queness" href="http://www.queness.com/" target="_blank">Queness</a></h6>
<p><a href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials" target="_blank"><img class="aligncenter size-full wp-image-4369" title="jQuery Horizontal Tooltip Menu" src="http://superdit.com/wp-content/uploads/2011/01/www_queness_com_resources_html_tooltipmenu_index_html.png" alt="jQuery Horizontal Tooltip Menu" width="540" height="135" /></a></p>
<p><a href="http://www.queness.com/resources/html/tooltipmenu/index.html" target="_blank">Demo</a> | <a href="http://www.queness.com/post/556/jquery-horizontal-tooltips-menu-tutorials" target="_blank">Download</a></p>
<h6>5. <a title="Digg Style Post Sharing" href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank">Digg Style Post Sharing Tool</a> by <a title="Queness" href="http://www.queness.com/" target="_blank">Queness</a></h6>
<p><a href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank"><img class="aligncenter size-full wp-image-4372" title="Digg Style Post Sharing" src="http://superdit.com/wp-content/uploads/2011/01/diggstyle.png" alt="Digg Style Post Sharing" width="540" height="155" /></a></p>
<p><a title="Digg Style Post Sharing Demo" href="http://www.queness.com/resources/html/shareit/index.html" target="_blank">Demo</a> | <a title="Digg Style Post Sharing Download" href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank">Download</a></p>
<h6>6. <a title="Coda Popup Bubbles" href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank">Coda Popup Bubbles</a> by <a title="jQuery For Designer" href="http://jqueryfordesigners.com/" target="_blank">jQuery For Designer</a></h6>
<p><a href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank"><img class="aligncenter size-full wp-image-4375" title="Coda Popup Bubbles" src="http://superdit.com/wp-content/uploads/2011/01/coda.png" alt="Coda Popup Bubbles" width="540" height="200" /></a></p>
<p><a title="Coda Popup Bubbles Demo" href="http://jqueryfordesigners.com/demo/coda-bubble.html" target="_blank">Demo</a> | <a title="Coda Popup Bubbles Download" href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank">Download</a></p>
<h6>7. <a title="Create a Simple CSS + Javascript Tooltip with jQuery" href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery" target="_blank">Create a Simple CSS + Javascript Tooltip with jQuery</a> by <a title="Queness" href="http://www.queness.com/" target="_blank">Queness</a></h6>
<p><a href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery" target="_blank"><img class="aligncenter size-full wp-image-4376" title="Create a Simple CSS + Javascript Tooltip with jQuery" src="http://superdit.com/wp-content/uploads/2011/01/queness.png" alt="Create a Simple CSS + Javascript Tooltip with jQuery" width="540" height="130" /></a></p>
<p><a title="Create a Simple CSS + Javascript Tooltip with jQuery Demo" href="http://www.queness.com/resources/html/tooltip/jquery-tooltip-queness.html" target="_blank">Demo</a> | <a title="Create a Simple CSS + Javascript Tooltip with jQuery Download" href="http://www.queness.com/post/92/create-a-simple-cssjavascript-tooltip-with-jquery" target="_blank">Download</a></p>
<h6>8. <a title="jQuery Tooltips" href="http://davidwalsh.name/jquery-tooltips" target="_blank">jQuery Tooltips</a> by <a title="David Walsh" href="http://davidwalsh.name/" target="_blank">David Walsh</a></h6>
<p><a title="jQuery Tooltips Demo" href="http://davidwalsh.name/jquery-tooltips" target="_blank"><img class="aligncenter size-full wp-image-4377" title="David Walsh jQuery Tooltips" src="http://superdit.com/wp-content/uploads/2011/01/dw.png" alt="David Walsh jQuery Tooltips" width="540" height="120" /></a></p>
<p><a title="jQuery Tooltips Demo" href="http://davidwalsh.name/dw-content/jquery-tooltips-jquery.php" target="_blank">Demo</a></p>
<h6>9. <a title="Poshy Tip" href="http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/" target="_blank">Poshy Tip</a> by <a title="Vadikom" href="http://vadikom.com/" target="_blank">Vadikom</a></h6>
<p><a href="http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/" target="_blank"><img class="aligncenter size-full wp-image-4380" title="Poshy Tip" src="http://superdit.com/wp-content/uploads/2011/01/poshytip.png" alt="Poshy Tip" width="540" height="110" /></a></p>
<p><a title="Poshy Tip Demo" href="http://vadikom.com/demos/poshytip/" target="_blank">Demo</a></p>
<p>10. <a title="Style My Tooltips" href="http://manos.malihu.gr/style-my-tooltips-jquery-plugin" target="_blank">Style My Tooltips jQuery Plugin</a> by <a title="Manos Mahilu" href="http://manos.malihu.gr/" target="_blank">Mahilu</a></p>
<p><a href="http://manos.malihu.gr/style-my-tooltips-jquery-plugin" target="_blank"><img class="aligncenter size-full wp-image-4382" title="Style My Tooltips jQuery Plugin" src="http://superdit.com/wp-content/uploads/2011/01/mahilu.png" alt="Style My Tooltips jQuery Plugin" width="540" height="130" /></a></p>
<p>http://manos.malihu.gr/style-my-tooltips-jquery-plugin</p>
<p><a title="Style My Tooltips Demo" href="http://manos.malihu.gr/tuts/style-my-tooltips.html" target="_blank">Demo</a> | <a title="Style My Tooltips Download" href="http://manos.malihu.gr/style-my-tooltips-jquery-plugin" target="_blank">Download</a></p>
<h6>Other Available Tutorials</h6>
<p><a title="Smart Tooltips" href="http://www.kriesi.at/archives/create-simple-tooltips-with-css-and-jquery" target="_blank">Smart Tooltips</a>, <a title="Smart Tooltips Part 2" href="http://www.kriesi.at/archives/create-simple-tooltips-with-css-and-jquery-part-2-smart-tooltips" target="_blank">Smart Tooltips Part 2</a>, <a title="jQuery Ajax Tooltip" href="http://rndnext.blogspot.com/2009/02/jquery-ajax-tooltip.html" target="_blank">jQuery Ajax Tooltip</a>, <a title="Creating A Simple Tooltip Using jQuery and CSS" href="http://blufusion.net/2009/07/27/creating-a-simple-tooltip-using-jquery-and-css/" target="_blank">Creating A Simple Tooltip Using jQuery and CSS</a>, <a title="jQuery Tooltips" href="http://www.exforsys.com/tutorials/jquery/jquery-tooltips.html" target="_blank">jQuery Tooltips</a>, <a title="Simple Tooltip jQuery Plugin" href="http://dev.mariusilie.net/content/simple-tooltip-jquery-plugin" target="_blank">Simple Tooltip jQuery Plugin</a>, <a title="jQuery Custom Tooltip" href="http://www.switchonthecode.com/tutorials/jquery-custom-tooltips" target="_blank">jQuery Custom Tooltip</a>, <a title="Experimental jQuery Tooltip" href="http://papermashup.com/experimental-jquery-tooltips/" target="_blank">Experimental jQuery Tooltip</a>, <a title="Rollover jQuery Tooltips" href="http://www.ilovecolors.com.ar/rollovers-tooltips-jquery/" target="_blank">Rollovers Tooltips jQuery</a>, <a title="Adding jQuery Tooltips" href="http://www.webdesignermag.co.uk/tutorials/adding-jquery-tooltips/" target="_blank">Adding jQuery Tooltips</a>, <a title="How to Create Simple jQuery Tooltip" href="http://takien.com/740/how-to-create-simple-jquery-tooltip.php" target="_blank">How to Create Simple jQuery Tooltip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/01/20/jquery-tooltip-plugins-and-tutorial-collection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ExtBox: An Extcore lighbox plugin</title>
		<link>http://superdit.com/2010/07/06/extbox-an-extcore-lighbox-plugin/</link>
		<comments>http://superdit.com/2010/07/06/extbox-an-extcore-lighbox-plugin/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 07:38:27 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Extjs]]></category>
		<category><![CDATA[extcore]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=1416</guid>
		<description><![CDATA[Yesterday I googling some tutorial about extcore, sure it is not easy to find example using extcore since the jquery is very popular and maybe some other time I will use jquery too, but the great thing is I found ExtBox, and in this very sort post I want to share it with you. ExtBox<a href="http://superdit.com/2010/07/06/extbox-an-extcore-lighbox-plugin/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I googling some tutorial about extcore, sure it is not easy to find example using extcore since the jquery is very popular and maybe some other time I will use jquery too, but the great thing is I found ExtBox, and in this very sort post I want to share it with you. ExtBox is an Extcore Plugin to create customizable light box, it is very light weight and the demo provide variety of LightBox themes, just chek it out the <a title="ExtBox: An Extcore Lighbox Plugin" href="http://code.atmaworks.com/extbox/" target="_blank">ExtBox</a></p>
<p style="text-align: center;"><a title="ExtBox: An Extcore Lighbox Plugin" href="http://code.atmaworks.com/extbox/" target="_blank"><img class="alignnone size-full wp-image-1447" title="extbox_pirobox-style" src="http://superdit.com/wp-content/uploads/2010/07/extbox_pirobox-style.png" alt="extbox_pirobox-style" width="500" height="272" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2010/07/06/extbox-an-extcore-lighbox-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

