I go to this URL, and saw a very good fly out effect by javascript.
I generally generate this kind of effect using jquery transfer like this way:
<script>
$( "div" ).click(function() {
var i = 1 - $( "div" ).index( this );
$( this ).effect( "transfer", { to: $( "div" ).eq( i ) }, 1000 );
});
</script>
so I am looking for right code or sample web site, from where I can get the jquery fly out effect just like the link I have given here.
You can use the Tooltip() function of Jquery UI Library.