jTip – A jQuery Tool Tip
Hot on the heels of ThickBox comes jTip, a jQuery tool tip solution. Of course, a tool tip type solution is anything but monumental; you don’t have to tell me that. Regardless, given my keen liking for the great jQuery library, along with a legitimate need to provide one last solution before I left Albertson’s, I have conjured up a tool tip solution using jQuery. So yup, it’s just another tool tip, but maybe with a little more flexibility/customization than what you might currently be use to with similar solutions.
jTip, not unlike Thickbox, pulls data from the server using a hidden http request. It’s nothing that fancy, really, just your normal everyday over hyped AJAX/AXAH type stuff. In keeping with all of this web 2.0 silliness, this means all of the tips are external. This is a handy feature depending upon the type of usage a person might intend for jTip. Originally, I built jTip to be used on a web application UI that requires the explanation of several redundant form fields in multiple web applications with similar functionality. For example, as showcased in my example, a user can roll-over a question mark (?) and get a detailed explanation of the password’s requirements. A single file can be used to keep these requirements consistent across an application as well as all applications that may require a password. Of course, the same thing could be done with a single HTML file and a pop-up window, but then it wouldn’t be web 2.0 certified, would it? Seriously though, this solution could easily be used with a database instead of a static htm file. For instance the file I link to could contain php that would connect to a database for the tool tip text. And yes, that would make more sense then the example I am showing here. Unless of course using a database to store and update information is not an option.
Ok, so all you really want to know is, exactly what does jTip do. At this point you can simply check out the demo, or read my quick and dirty definition of jTip below.
What does jTip do:
jTip pulls content into a tool tip using the HttpXMLRequest object. By adding a class attribute value of “jTip” to a link element you can create a tooltip from the content found in the file the href is pointing too. Also jTip can be customized by providing user defined widths (defaults to 250px wide) via a url query string. The height is liquid and stretches to match the content that fills the tool tip. Additionally it’s possible to provide a link (via url query string) to a jTip tool tip link element (a href) so that the link will still function as expected by the user. See the Yahoo link in the demo for a working example.
If the mouse pointer changes to a hand when you roll-over an image associated with a story the image upon clicking either links to enlarged version of the image or a website associated with the image.
Pretty slick for a guy with so little hair.
Cody this is definitely slick. Very very nice.
Looks really good.
I already use a jquery.js file for thickbox. Will these conflict with each other? Can I link to just one of them inside my head.php?
@Jack – Nope, no conflict. Link to just one jquery.js file.
Cody, this is great! Although I have some troubles with FireFox with it. If I use an external link as parameter I get only the loading gif. Nothing else hapens. It works well in IE though. Problem looks like this:
href=”http://nikt.unibas.ch/showglossar.cfm?word=FTP”
Would be grateful for any help. Regards
Gilbert
This is fantastic! The more I see of jQuery, the more I like it.
One thing I’ve noticed, though… there’s a slight flickering if you move your mouse over the question mark while the tooltip is currently displayed.
@Jason – Which browser? I do not see this on FF (windows).
very nice, though, as mentioned above, heavy flickering in safari 2.0.x – a workaround would be brilliant. thanks.
Sorry, I thought I had the browser in there; I must’ve edited it out accidentally. Like schnuck, I see it in Safari.
@Jason – Which version of safari?
@Jason – Never mind, I think I fixed the issue. Check out the demo and download again. I change the code so that the tool tip will not flicker in safari anymore.
I just looked at the demo, and the flicker is gone. Excellent work. Thanks much.
Luv the work Cody, question though. Would one be able to keep the tool tip static to place a link in so one could click on it to go to another page, etc… Maybe an adjustment I could make? Thanks again!
can this be modified so it doesn’t use an outside file and just uses whatever is in the title attribute like regular tooltips?
@Shaun – Not yet.
I really like this!
It’s really smart and helps me in some situations.
Unfortunately, it doesn’t use valid XHTML, which I need to use. The main gripe I have is the use of ‘name’ for the title of the tooltip.
Is there any chance of changing this in the future?
Cheers.
@Dan – Are you sure that the name attribute is not valid XHTML. It validates in DW for me using transitional and strict.
Yes. I’m positive.
I validated the code using both Tidy, and then the W3C validator. Both come up as showing the use of name in hyperlinks to be deprecated.
Further research pointed me to:
http://www.w3.org/TR/xhtml1/#h-4.10
It says here that name was formally deprecated, in elements such as [a, form, img], as of XHTML 1.0.
May i suggest using title or rel instead?
Hi all,
sorry but I cant use thickbox and jtip in the same page. The size of the jquery.js differs too in the two examples ! Can someone please post a working combination of both cool tools here or somewehre please ???
I plan on using these tooltips, Cody.
I made a few minor modifications using some of the suggestions found here, as well as some of my own.
http://15daysofjquery.com/jquery-tooltips/21/
Clean and flexible, I like your work here.
Do you know why there is a hiccup when you set your containing div (contentPad) to a fixed width? If I set the width to 530px, for instance, the “No Specified Width” tip jumps off screen.
@Matt – I tried this, but did not see this happen (in FF and IE). I set the div to have a fixed width and the tool tip function fine. Which browser are you using?
@Jack – Nice work. Everything can always be better. : – )
проверка
Extremely nice.
Just a little “but”. When the linked text has a line break in the middle, the tooptip appears in the wrong side (WinXP, Opera9).
@Antonio – Good point, I’ll have to think about that. Thank you for pointing it out.
@ Antonio – If you add a few CSS properties to the jTip class you can keep your links from wrapping: “white-space: nowrap” (forces links to a single line and works for all browsers except for IE 6, which somehow thinks they still span two lines) and “display: inline-block” (which reminds IE that links pushed to the next line are still inline elements).
From what I can tell, some browsers (definitely Safari) take issue with the inline-block property because it stretches the wrapping link to a block that spans two lines (while, paradoxically, keeping it an inline element). I decided to specify the alignment for the block—“vertical-align: bottom”—which seemed to do the trick.
Hello Cody,
first of all again congratulations to your great jQuery Tools. I tried to find some answers on my above questions but so far no one could help me. The final problem I have is:
How can I get a working example of JTip and LightBox v2.2 working together. Seems that somehow jquery and scriptaculous dont work together ?
Please help me. Thanks
@Gilbert – Sorry Gilbert but I just don’t have any experience with jQuery and scriptaculous/prototype together. Did you check this page.
The only problem I ran into was when you have a list of a lot of links, if you do not leave space at the bottom, then the code will not display. Check out this link:
http://www.nssa.org/jquery%2Dtooltip/conferenceRatings2005_6b.asp?event=278
works fine with the top entries but when you scroll down to the bottom, you run into issues.
@C.J. - Yup, it currently does not flip on its x axis based on browser height….maybe on the next version?
Hello!
Any solution to possible special character problems? All my Umlaute are broken.. :(
Cody -This has exponentially assisted in the usability of a client’s site.
One issue- If i place the spans in a PEAR HTML QuickForm I get sparatic flickering in all browsers.
$form->addElement(‘text’,’login’,’Desired Username?:’,’class=”signupData”’);(The link code is hidden was wrapped around where the question mark is.
Cody – I think I spotted a problem in IE. If there is a form element below the jTip div it obscures it!
Nice work. It would be cool to use these tooltips as some sort of context menu (which is what I was actually looking for). Would it be possible to allow mouseovers on the tooltip, and to remove the tooltip only when the mouse moves from the link AND the tooltip itself? I could try to hack it in, but I’d much rather this option was added to jtip.
Thanks Cody for sharing this script!
I wanted to try it out for an image gallery and I did a few modifications, here’s the modified .js – http://www.phpied.com/wp-content/uploads/2006/08/jtip.js
1. The script was trying to read the linked url (assuming html), so it’s not showing the image, but reading the binary data instead. So in the function JT_show I made a regexp check and write an img tag if the file extension of the linked file is gif|jpg
2. I didn’t like the fact that the script was not working if you don’t have an ID attribute in the href. I changed JT_show to accept only one param – the href object and to figure out the rest. I also had to change the get*() methods (which were accepting element ID) to now accept object reference.
I hope it helps for the next release ;)
Thanks again!
This is very slick – something for which I’ve been waiting a long time.
One small blemish: (observed at least in Safari & FF/Mac) when (relatively) window is narrow/font-large the box sometimes insists on showing to left (and thus being partially cut off) – even when there is MORE room for it to display to the right.
?any chance that another alternative display could be offered (when neither left nor right offers room to display full box: ? CENTER box… and display directly BELOW (or above… or right atop when needed) ?
great! this is very easy to use :)
Hi,
Looking at your example page I would say that you need to tweek your script a bit.
The tip window should never pop up beyond the border of the browser window. How are people suppose to read the tip?
It’s left border should not go beyound the left border of the browser window and it’s bottom most border should not go beyond the bottom border of the browser window.
You should be able to control this ustilizing css. It’s an object right?
I’ve been on sites where you have a window pop up and the borders go beyond the browser window borders. The big problem with this is that you can’t read all the data in the tip window. When the mouse moves off of the link, the window disapears. So if you scroll down to read the rest of the content, the tip window disapears and you never get to read all the information in the tip.
Likewise, if the tip window is beyond the browsers left border, you can’t even side scroll to read the entire tip.
Other than these two bugs, I like this. My stance on JavaScript is to keep it out of web design all together. However, with Ajax, there are features that not only make it worth using, but will make the hardest anti-JavaScript pundant enable JavaScript in their browsers. They may not keep it enabled, but for a site that proves to be honest and trustworthy, they will enable JavaScript for the benefit that those features provide.
There seems to be a positioning problem when wrapping an anchor classed as a jTip around an image. The tip’s arrow appears near the upper left corner of the image. The script doesn’t seem to be calculating the actual width of the element inside. Is this normal, and should I just see if I can tweak the script’s width reporting?
Yep, I just threw an alert in there, and the offsetWidth for my image elements is returning 0.
It seems that jtip doesn’t respect borders of the browser. It goes beyound the bottom of the browser. And in some cases beyond the left side. Is there a fix for this?
Great Tooltip,
two suggestions though.
1) href=”page1.htm?width=300 is not good practice if you want to give Search Engines clean URLs, you could have made a custom attribute in the anchor tag and used it for storing the parameters(i.e. visit page 1)
2) if you can have sticky tooltips (that don’t go away when you unhover) that would be the best tooltip library I have seen
addition on number 1 since formater ate my a anchor
(i.e. < a href="page1.htm" jtparams="width:300" > visit page 1 < / a >)
This is great, I’d love to see a version that overlays select boxes in IE. I believe it’s done by inserting an IFRAME behind the tool tip and in front of the select box.
Thank you so much, this was exactly what I was looking for. It took a while to figure out how to get this to work with an AJAX call using Ruby on Rails, but now that I’ve got it, it works beautifully.
GREAT TOOLTIP!!!
Do you have a script to have tooltips that stay visible when you roll over them
Thank again
Cool plugin, though when I reduced teh width of FF the tooltip went to the left as you would suspect but was half hidded as it went off the left of the screen set that the min X pos is 0 and the the size would shrink if need be to be perfect but well cool.
Thanks
@Everyone – Before you use this, you should check out this updated version.
Thanks for the update. I suggest adding it into the main content of this article if possible (a link to the new version). I just spent about an hour trying to fix things in the old version. Oh well. :P
Thanks again!
This is great. I am big fan of this now. One problem I see is if I have query string param in the link something like this
Go To Yahoo
the tool tip comes up ok but when i click on the link nothing happens
I’m trying to animate the jtip using fadeIn and/or slideDown instead of the default show but I’m getting mixed results like the arrow not showing up or in the case of slide down only the content is loaded without the jTip box… Anybody enlighten me as to how to fix or why it is responding like this? I’m guessing it has something to do w/ the timing of animations
jTip starts and then shuts down if the mouse gets over an element and immediately moves out.
Most surfers who visit a site just move around the mouse when they are reading. This causes some flickering.
I recommend adding some time to the user before starting to show the tip.
Nice tools :)
the updated version doesn’t works well with the latest compressed-jquery. The tooltip is wrong placed.
So is possible to use jtip inside a tbox box?
thanks for your great tools.
All I can say is “very nice script”!
I tried to use this script and loved it.
If the tooltip description does have some hyperlink that links to other external reference, what is the best way to modify the Jtip? I appreciate very much for any helps.
Thanks,
banh
Elegant! Very Elegant! I was wondering if you can give us a few tips on how to make jTip stick?
It doesn’t present scandivanian characters! We have to use Unicode instead.
What do I need to modify if I wish not to use the AJAX functionality, i.e. to store the tooltip information in the same file in separate divs:
.. my tooltip info .. ?
I think every time to request info from server when mouse gets over trigger is a bit too much overhead… maybe some caching would help:)
I have do a hack of JTip. It’s allow use JTip in every html tags, not only in anchors.
You can see, here:
http://necudeco.blogsome.com/2006/12/16/hacking-jquery-jtip/
This is a great !
Very good job, I will use it everywhere :)
I like jTip’s simplicity. I keep all my tooltips in a separate folder for easy maintenance.
Somewhere down the road, I may set up a MySQL table for something like a FAQ.
Surely more load on the server, but then users could contribute to the FAQ file.
Thanks for another great script, Cody! I’m using Jacks W3C compliant version.
I have an issue with flickering, though.
E.g. on http://www.marcopologames.com/games/725/mystery-case-files-ravenhearst.html it will flicker easily when you hover the mouse over the question mark after download size in both IE and Firefox.
On other uses, like on http://www.marcopologames.com/games/top.html (hover over game icon) it works great.
I tried the “updated version” but it gave me formating issues in Firefox.
Is there a fix for the flickering issue?
I need the tooltips to stay visible when hovering over it, because I need to put links in the tooltips.
Also, I need to add tooltips to images and tags other than anchor tags.
Are these features possible with jtip?
@Greg – The features you are asking about need to be added to the script. As of right now I have no plans of updating this script. You might try it yourself.
Hi,
this is a great tool!
I just have a problem to get Special Characters like “ä, ü, ö “ to show correctly in a Tooltip box. ...
Any idea, how to solve this? Happens even when using your example and just adding these chars to the ajax.htm
This is excellent tooltip, but I am not sure how can we save the tooltip on the same file. I could not manage to to do it. Finally ended up using Interface API with Jquery.
See : http://www.wheelsandroads.com/index.php
Firstly, Cody I hope you’re making a lot of money in your day job, because you deserve every penny !
Now for my question if anyone here can offer advice. I tried to modify jtip.js to open passthrough clicking of links in a ‘new’ window by binding the link ID instead to window.open ie.
..linkId).bind(‘click’,function(){window.open(url…
But now I get x instances of the same window opening at once, where x is the number of times I have hovered over my hyperlink.
unbinding first, ie .unbind() to remove any prior binds solves the problem, but causes other issues.
Any suggestions??
Thnx ccg.
Whit recent version of JQuery, it isn’t working for me in MSIE...
Can you make a fix for it ?
I try to call the JTip after a $.post call with JQuery.
But it doesn’t work with current JQuery version and $.post isn’t working with your bundled version.
Hi
Great work!
Is there a way to make the tooltip stay visible long enough so that a user can click on a link within the tooltip itself (i.e. the external HTML loaded into the tooltip has links).
I’d imagine the tooltip would remain visible while the cursor is hovering on it but would disappear after one of the following…
1) a specified time
2) a click either within or outside the tooltip
3) a rollover of another tooltip
Many thanks in advance.
Thx
Nigel
Hi Cody
I’ve installed this great Jquery plugin.
I have a problem with external link.
If the page that my href point to is external (example: google.it or yahoo.it) it returns this error
uncaught exception: Permesso negato al metodo di chiamata XMLHttpRequest.open
Can you explain me why?
Thanks a lot
Nice work.
You should know that if you click on the jtip link more than once without closing the popup, it creates multiple popups on top of each other resulting in having to close them all.
I added the following code to the very top of the JT_show function that should solve that:
if ( $(’#JT’).css(‘display’) != ‘none’ )
{ $(’#JT’).remove();
}
Hi Cody
I have trayed to use the jTip in a link whith a php code (like: http://..example.php?ID=1) but not work.
You have suggestions ?
Thanks
Cody this is definitely slick. Very nice.
Alberto,
i think you haven’t change ‘index.htm’ -> ‘index.php’
@Greg
I did some changes on the updated code to keep the TIP until a hover out happens from the tooltip DIV.
1- On JT_init()
$(“a.jTip”) .wrap(’‘) .hover(function() { JT_show(this.href,this.id,this.name) },function() { }) .click(function(){return false});
removed the hover out function. Here we could just add this other call over a.jTipFixed for example.
2 – JT_show() first line added to avoid open multiple tooltips
$(’#JT, #JT_arrow_left, #JT_arrow_right’).hide().remove();
3 – JT_show() last line added to remove tooltip when hover out the tooltip area
$(’#JT’).show().hover(function() { },function() { $(’#JT, #JT_arrow_left, #JT_arrow_right’).hide().remove(); });
Hope this helps the people that would like to have links or actions inside the tooltip, and tks for the great plugin…
Thank you so much for this script!!!
What a wonderful job!
Dear Cody,
Thank you for the tool tip tht you have given us,Bruno mentions that you can get the tool tip to hang around after hovering, I tried his example but canot get it to go away. I gues I am not sure where he expects me to put part 2 and 3 of his example on your page (last comment) in Jtip
Please help
Kind regards
Alan Judin
SAInternet.com
(South Africa)
Hey,
Thanks for the great tooltip.
I am using it for a website where i am showing tooltip on image thumbnails.
I observed that as my page becomes longer sometimes (in Firefox 1.5 and even IE 6.x) the images further down the page fail to show the tooltip.
I managed to fix this by changing the below line in the jtip.js
$(document).ready(JT_init);
to
$(document).load(JT_init);
Looks like when the ready event is fired and some of the images are still being downloaded then jquery fails to find elements “a.jTip” which are not yet rendered completely. Maybe this is a browser thing and not a jquery problem. Changing the event to onload works great.
Maybe this will be helpful to others who experience the same issue.
hi, great tool(-tip)... But is it possible to fix it and close with a click? I think it would be cool to use it for login forms, mail- forms etc… (???). I just search for a those kind of interactive pop-up, because thickBox etc is to much screen action for me… ;-)
This is great. Thank you.
Question: My tips are showing an html table, with rows that I don’t want to wrap. If the browsers font is too big the text spills over my hardcoded width (but I’d rather not make the width bigger because then most viewers see too much whitespace.)
How could I make the width scale based on the users browser font setting. Or even better, make the width just “snap to fit” the table width?
Thanks again.
What if I have several tooltips on one page. Will that means that so many sequential file read will apprear since tooltip content is allways retrieved from a file. Is it possible to add tooltip text in A HREF ... with no additional files …
Maybe I’m missin’ something. Anyway … great work.
Thank you …
RE:
Hi,
this is a great tool!
I just have a problem to get Special Characters like “ä, ü, ö “ to show correctly in a Tooltip box. ...
Any idea, how to solve this? Happens even when using your example and just adding these chars to the ajax.htm
Thanks all.
Great Job!
I’d like to use it with area tag instead of anchor tag is this possible?
Thank you so much for this script!!!
Good idea, but I don’t see the example (he is don’t work in firefox, win).
veryy Good site..Thank You.
hi, great tool(-tip)... But is it possible to fix it and close with a click? I think it would be cool to use it for login forms, mail- forms etc… (???). I just search for a those kind of interactive pop-up, because thickBox etc is to much screen action for me… ;-)
RE:
Hi,
this is a great tool!
How do I make this work under ajax tabbed pages?
I have this in the header
It works on regular pages, but not sub-ajax based pages.
Thank you so much for this script!!!
What a wonderful job!
Hi Cody!
Thank you for your great jTip solution. I want to use it on my website. But I saw also the limitations concerning the positioning of the tooltip.
My aim is to achieve best usability for my visitors. With your jTip we get following problems:
If the tooltip flips to the right, the free place for the tooltip is calculated without taking into account, that the linked words will have a certain length. By this length the tooltip will show up more to the right and then can be clipped / trimmed at the right browser limit, as there is no third column at the right.
If the tooltip flips to the left, I have no problems, because on the left there is always my navigation. As long as I do not exceed the width of the navigation, everything is nice.
If the linked words are at the bottom of my webpage, the tooltip will be clipped / trimmed at the bottom boarder of the browser window. This is really ugly because with the link, I have given the promise to the visitor, that he will get an extra info here. But if it shows up, parts of it cannot be accessed. Grrrr…
My website is based on Joomla. In Joomla we have a JS library called OverLIB and you will surely have heard about it. http://www.bosrup.com/web/overlib In OverLIB, there is a funtion called “hauto” and “vauto”. If it is active, the tooltip will turn around the linked word in just that direction, were there is enough place to show it completely without any trimming / clipping. So the tooltip even may show up above the linked word! Any of 360° around the link is possible.But OverLIB has one very big disadvantage: It does not use AJAX. If I have 10 or more tooltips on a web page, all the tooltip content will be loaded, even if the visitor will not use any of them.
So my great wish is: Could you extend your jTips with the same function, which is implemented in OverLIB and which is causing the hauto and vauto function?I am sure, that there will be no other AJAX based tooltip with such a feature and you will be the first to bring it out!
Clemens
Stuttgart / Germany
Hello, i think that i have found another slight problem when using the code in IE6.
It’s related with the div over a select case.
Here is my updates:
function JT_init(){ $(“a.jTip”) .hover(function(){JT_show(this.href,this.id,this.name)},function(){$(’#JT’).remove();if($.browser.msie){$(’#JT_IFRAME’).remove();}}) .click(function(){return false});
}
and
function JT_show(url,linkId,title){
...same code …
$(’#JT_copy’).load(url);
if($.browser.msie){
$(“body”).append(”“);
$(’#JT_IFRAME’).height($(’#JT’).height());}
}
oups $(“body�).append(�“); is empty , the content is :
That was a very well thought out analysis. I agree with William on making the voting results hidden until one votes. The only piece I see missing that no one has mentioned so far is removing BuryIt. I don’t mind so much that friends collaborate to get stories to the front page faster. What I object to is that others have the power to effectively cancel my vote. There is no analog to that in a Democracy. Remove Bury It and more varied stories will appear on the site, thus attracting or keeping more varied users. Remove Bury It and the effects of collaborative voting become minimized.
Very Good site Thanks You..
Thank You!
jTip rocks – a very useful little script this! Thank you so much.
I was curious to know how the tooltip is able to scroll with the page content. Can you shed any light on this?
Basically, I have added it to a scrolling div (height: 500px; overflow: auto;), and it works great, however, when the div is scrolled, the tip stays in a fixed position. If the div does not scroll (no height, no overflow) the tip appears and points to the correct spot, and when the page is scrolled, moves with the page and continues to point to the correct spot.
Is there a way to set a reference so that the tip would move along with the div that is scrolled?
Do you know why there is a hiccup when you set your containing div (contentPad) to a fixed width? If I set the width to 530px, for instance, the “No Specified Width� tip jumps off screen.
oups $(“body‿).append(‿“); is empty , the content is :
Thanks for the wonderful demos. Kleje i kleje przemyslowe. Nice article veryy Good Site..
Very Good site Thanks You..
Hi,
<a href=“0_accueil/rci.htm?width=250&link=http://inmet07/Projets_RCI.htm” name=“RCI” id=“rci” class=“jTip” target=”_blank”>RCI</a>
this link opens on the same window despite my parameter is target=”_blank”
Why is this not working as intended ?
Much Thanks
jQuery impresses me by the day, and this looks like an excellent resource and application. Keen to check this out and see how it works. I have only started on jQuery recently, so there’s still a lot I’m learning but websites like yours are making it really easy. I’m fascinated with the amount of resources and willingness to share on the internet. I guess this is what makes the ‘new media’ so great – amongst other things. Thanks again!
Hi,
this is a great tool!
If you read all these comments, you relize hou lost we realy are when it comes to alternitive feuls. I think there might be some conspiracy from our goverments and there is a lot of con artists in this for money. But one thing is for sure – you can not buy a car that uses water as feul. I think we must start using wind and sun energy to safe money at home and spent it on fuel untill hybrid cars become the norm..
How do I make this work under ajax tabbed pages?
I have this in the header
It works on regular pages, but not sub-ajax based pages.
very Good site Thanks You!
Looks really good.
Interesting. But I’m more interested in hearing any test reports for jQuery applications that are using AJAX, any animation for PCs that might have altered the system timer resolution.
Very Good..
Thank you so much..
Hey Cody, this script is great but.. I’m trying to place this on thickbox, but the tip doesn’t appear. I’ve tried adjusting the Z-index to no avail; the tooltip only works on a normal page? Any ideas?
Thank you so much..
uhmm can someone help me about other alternates for this linking code—-> 1Bscript type=“text/javascript”
src=http://....%1Bjs>
very Good..Site…Thanks..
jtip isn’t support chinese!
good works, thanks!
uhmm can someone help me about other alternates for this linking code—-> 1Bscript type=“text/javascript�
realy great site, very nice article. Can i translate this article on my site ?
Keep up the good work.
Thank you…
I have used the script its working fine. thanks. But one issue I have is some links I have in the bottom of my page on which I want to show the jTip. but when mouse overs on those links, the tooltip does not set itself on the screen and goes down the scroll bars. It increases page length which is not a problem, but you cannot scroll down to see the tool tip as mouse outs and the tooltip disappears… you can see it here www.starcomsystems.net/beta . See for two thumbnail images on left and more… link.
Regards,
Ali
thanks share!
If you read all these comments, you relize hou lost we realy are when it comes to alternitive feuls. I think there might be some conspiracy from our goverments and there is a lot of con artists in this for money.
Verry Good web Thank Youu
I have used the script its working fine. thanks. But one issue I have is some links I have in the bottom of my page on which I want to show the jTip. but when mouse overs on those links, the tooltip does not set itself on the screen and goes down the scroll bars. It increases page length which is not a problem, but you cannot scroll down to see the tool tip as mouse outs and the tooltip disappears… you can see it here
Keep up the good work.
Thank you…
Thanks good work
thank you
Thanks!
jTip would be perfect if it also allowed a local mode — ie, used a hidden div for content… Any thoughts of extending?
I am interested in the topics discussed but have been feeling a little intimidated by the thought of the work.
How do I make this work under ajax tabbed pages?
I have this in the header
It works on regular pages, but not sub-ajax based pages.
Very good job..
Very good job. You can visit http://www.javascriptbank.com/javascript/ajax-javascript.html
thank you
thankss all
Thanks
thankss
many thanks
Sohbet, sevgi, chat
I’m testing jTip and it mostly works very well. On occasion the tooltip gets stuck if it’s “popped up” repeatedly (seeing this at least in FF2). When this happens, the loader image (loader.gif) in a small what-looks-like a div shows up on the bottom of the screen. I first thought this was caused by interaction with the layout and/or other JavaScript on the page I was working on, but then I played with your jTip demo, and was able to reproduce the same issue there. It seems that if the mouse is moved repeatedly and quickly over the popup link, eventually the popup gets stuck “on” (even though the pointer is moved off the popup link), and when I unstuck it (i.e. make it properly disappear) by moving the mouse over the link once again, then off the link, the phantom loader image shows up.
I doubt the users of the page will be abusing the popup link in this fashion, but nevertheless I thought to mention about it in case you haven’t noticed it.
Following up to my previous comment (#143). The issue seems to only show up in Firefox (currently using 2.0.0.7). The tooltip never gets stuck in IE7.
See the following link for an example of the phantom DIV that shows up on the bottom of the screen after the tooltip has gotten stuck once: http://tinyurl.com/yp8nau
tesekkurler . thanksssss
[link title=“sohbet”]www.sohbetturk.net[/link]
[link title=“chat”]www.chatturk.net[/link]
[link title=“msn nickleri”]www.turkiyemsn.com[/link]
[link title=“evden eve nakliyat”]www.ak-kelebek.com[/link]
[link title=“evden eve nakliyat”]www.hayrioglu.biz[/link]
[link title=“evden eve nakliyat”]www.seferogluevdenevenakliyat.com[/link]
[link title=“evden eve nakliyat”]www.horoztransport.com[/link]
[link title=“evden eve nakliyat”]www.evdenevenakliyat.de[/link]
thanks all
Basically, I have added it to a scrolling div (height: 500px; overflow: auto;), and it works great, however, when the div is scrolled, the tip stays in a fixed position. If the div does not scroll (no height, no overflow) the tip appears and points to the correct spot, and when the page is scrolled, moves with the page and continues to point to the correct spot.
good site :)
like it
Link to just one jquery.js file.
I doubt the users of the page will be abusing the popup
thenksss
.,.,.,.,
<a href=“http://www.tamdost.com”>sohbet</a>
[link title=“sohbet odasi”>www.tamdost.com[/link]
Thanks Good
good work man, super site
great and really nice Design
thanks nice plugin
Thank You Blog. Good site.
Great!
sohbet
http://www.bizimle.com/2.el-ikinci-el.php
evden eve nakliyat
evden eve nakliyat
sohbet
chat
sohbet
sohbet
adult
islam
sohbet
merhabaaalar
how can ı download that
help me pls
thank you all very good
Thank you..
Really good webmaster website…
ThankS …
Thank you …
http://www.bizimle.com/2.el-ikinci-el.php
http://www.bizimle.com/3d_resimler.php
http://www.bizimle.com/29_ekim.php
http://www.bizimle.com/30_agustos.php
http://www.bizimle.com/6600_uygulamalar.php
http://www.bizimle.com/7610_program_download.php
http://www.bizimle.com/acem_kizi_mp3_midileri.php
http://www.bizimle.com/acik_ogretim_sinav_sonuclari.php
http://www.bizimle.com/agaclar_ormanlar.php
http://www.bizimle.com/ahmet_ozhan.php
http://www.bizimle.com/ahu_tugba.php
http://www.bizimle.com/akor_akorlar.php
http://www.bizimle.com/alisveris_alis_veris.php
http://www.bizimle.com/almanca_germany.php
http://www.bizimle.com/almanca_turkce_sozluk.php
http://www.bizimle.com/altili_ganyan_tahmin.php
http://www.bizimle.com/am_amciklar.php
http://www.bizimle.com/am-amcik.php
http://www.bizimle.com/Angelina-Jolie.php
http://www.bizimle.com/animasyon.php
http://www.bizimle.com/ankara_hotel.php
http://www.bizimle.com/ankarada_satilik_ev_ilanlari.php
http://www.bizimle.com/anket_sayfalari.php
http://www.bizimle.com/anna_kournikova.php
http://www.bizimle.com/anne_anneler.php
http://www.bizimle.com/anneler_gunu_hazir_cep_mesajlari.php
http://www.bizimle.com/anneler_gunu_mesajlari.php
http://www.bizimle.com/antalyada_konutlar.php
http://www.bizimle.com/araba_ilanlari.php
http://www.bizimle.com/search_ara.php
http://www.bizimle.com/search_search_motorlari.php
http://www.bizimle.com/arkadas.php
http://www.bizimle.com/arkadas_search.php
http://www.bizimle.com/arkadas_bul.php
http://www.bizimle.com/artvin_hopa_resim_galerisi.php
http://www.bizimle.com/arzu_arzular.php
http://www.bizimle.com/ascii_mesajlar.php
http://www.bizimle.com/asian_sites_for_free_email_addresses.php
http://www.bizimle.com/ask_askim.php
http://www.bizimle.com/ask_harita.php
http://www.bizimle.com/ask_hazir_mesaj.php
http://www.bizimle.com/ask_mesk.php
http://www.bizimle.com/ask_ogut_99ogut.php
http://www.bizimle.com/ask_sembolleri.php
http://www.bizimle.com/ask_siirleri.php
http://www.bizimle.com/ask_sizi_ele_verir.php
http://www.bizimle.com/ask_sozleri.php
http://www.bizimle.com/ask_tazelemek.php
http://www.bizimle.com/ask_ve_guzellik_tanricasi_afrodit.php
http://www.bizimle.com/asker_hazir_mesajlari.php
http://www.bizimle.com/asker_hazir_mesajlari2.php
http://www.bizimle.com/aski_sicak_tut.php
http://www.bizimle.com/askim_askim.php
http://www.bizimle.com/askin_sayilari.php
http://www.bizimle.com/ask-sozleri.php
http://www.bizimle.com/asp.php
http://www.bizimle.com/asp_scriptler.php
http://www.bizimle.com/at_yarisi_sonuclari.php
http://www.bizimle.com/ata_demirer.php
http://www.bizimle.com/ata_sozleri.php
http://www.bizimle.com/ates_atesli.php
http://www.bizimle.com/ataturk_ataturkculuk.php
http://www.bizimle.com/atyarisi_at_yarislari.php
http://www.bizimle.com/avea_melodileri.php
http://www.bizimle.com/avrupa_amerika_asya_kitasi.php
http://www.bizimle.com/avrupa_yakasi.php
http://www.bizimle.com/aya_ikinci_cikan_insan.php
http://www.bizimle.com/ayak_ayakta_sex.php
http://www.bizimle.com/aylin_coskun.php
http://www.bizimle.com/ayrilik.php
http://www.bizimle.com/ayrilik_mesajlari.php
http://www.bizimle.com/ayrilik_nefret_mesajlari.php
http://www.bizimle.com/aysel_gurmen.php
http://www.bizimle.com/aysu.php
http://www.bizimle.com/aysu_basar.php
http://www.bizimle.com/azerice_canli_radyo.php
http://www.bizimle.com/baba_babalar.php
http://www.bizimle.com/babalar_gunu_hazir_cep_mesajlari.php
http://www.bizimle.com/babalar_gunu_mesajlari.php
http://www.bizimle.com/bagimli_muptela.php
http://www.bizimle.com/bahis.php
http://www.bizimle.com/baliklar.php
http://www.bizimle.com/bahama_maldiv_adalari.php
http://www.bizimle.com/baliklar_balikcilik.php
http://www.bizimle.com/banka.php
http://www.bizimle.com/banka_bankalar.php
http://www.bizimle.com/banu_alkan.php
http://www.bizimle.com/banyo_aksesuarlari.php
http://www.bizimle.com/basak_sahin.php
http://www.bizimle.com/basketbol.php
http://www.bizimle.com/basketbol_basket.php
http://www.bizimle.com/bayan_arkadas_ariyorum.php
http://www.bizimle.com/bayan_msn.php
http://www.bizimle.com/bayanlarla_sesli_sohbet.php
http://www.bizimle.com/bayhan_gurhan.php
http://www.bizimle.com/bayram_kandil_hazir_cep_mesajlari.php
http://www.bizimle.com/bayram_kandil_hazir_cep_mesajlari2.php
http://www.bizimle.com/bayram_kartlari.php
http://www.bizimle.com/bayram_mesajlari.php
http://www.bizimle.com/bayram_slaytlari.php
http://www.bizimle.com/bayramin_kutlu_olsun.php
http://www.bizimle.com/bebek_resimleri.php
http://www.bizimle.com/bedava.php
http://www.bizimle.com/bedava_bedavalar.php
http://www.bizimle.com/bedava_cep_melodileri_oyunlari.php
http://www.bizimle.com/bedava_email.php
http://www.bizimle.com/bedava_mp3_yukle.php
http://www.bizimle.com/bedava_oyun.php
http://www.bizimle.com/bedava_resimli_mesaj.php
http://www.bizimle.com/Bedava_melodi_bedava_sms__wap_melodi_cep_melodi_polifonik_melodi_turkcell_melodi_nokia_melodi_logo_cep.php
http://www.bizimle.com/bedava_site_bedava_siteler.php
http://www.bizimle.com/bedava_sms.php
http://www.bizimle.com/bedava_web_sitesi.php
http://www.bizimle.com/bedava-melodi.php
http://www.bizimle.com/Bedava_melodi_bedava_sms__wap_melodi_cep_melodi_polifonik_melodi_turkcell_melodi_nokia_melodi_logo_cep1.php
http://www.bizimle.com/Bedava-Sms.php
http://www.bizimle.com/Bedava-ziyaretci-Defteri.php
http://www.bizimle.com/begen_begenme_begenenler_begendim_begendiklerim.php
http://www.bizimle.com/belediye_hizmetleri.php
http://www.bizimle.com/Ben_sana_olurum_sarisinim.php
http://www.bizimle.com/bergama_belediye_spor.php
http://www.bizimle.com/berksan_ben_hic_unutmadim_unutamam.php
http://www.bizimle.com/Berna_Ozturk.php
http://www.bizimle.com/besiktas_bjk_mesajlari.php
http://www.bizimle.com/beyaz_esya.php
http://www.bizimle.com/beyazesya_beyazesyalar.php
http://www.bizimle.com/bilet.php
http://www.bizimle.com/bilet_biletler.php
http://www.bizimle.com/bilgin-egitim-teknolojileri.php
http://www.bizimle.com/bilgisayar.php
http://www.bizimle.com/bilgisayar_computer.php
http://www.bizimle.com/bilgisayar_pc_pcler.php
http://www.bizimle.com/bilgisayarda_ses.php
http://www.bizimle.com/bir_demet_tiyatro.php
http://www.bizimle.com/bir_istanbul_masali.php
http://www.bizimle.com/bir_prens_araniyor.php
http://www.bizimle.com/bir-istanbul-masali.php
http://www.bizimle.com/biten_iliskiler.php
http://www.bizimle.com/bitki_bitkiler.php
http://www.bizimle.com/bocekler.php
http://www.bizimle.com/bocekler_bocek.php
http://www.bizimle.com/bolge_bolgeler.php
http://www.bizimle.com/bolgeler.php
http://www.bizimle.com/borsa.php
http://www.bizimle.com/borsa_borsalar.php
http://www.bizimle.com/borsa_imkb.php
http://www.bizimle.com/britney_spears_erotik.php
http://www.bizimle.com/Britney-Spears.php
http://www.bizimle.com/bu_sabahlarin_bir_anlami_olmali_mp3.php
http://www.bizimle.com/burc_ask_sevgi.php
http://www.bizimle.com/burc_burclar.php
http://www.bizimle.com/burc-burclar.php
http://www.bizimle.com/burclarin_kotu_yonleri.php
http://www.bizimle.com/burcu_gunes_mp3_yukle.php
http://www.bizimle.com/bu-sabahlarin-bi%20anlami-olmali-mp3-yukle.php
http://www.bizimle.com/buyu_buyuler.php
http://www.bizimle.com/buyuculuk.php
http://www.bizimle.com/cagla_sikel_resimleri.php
http://www.bizimle.com/cakir_kurtlarvadisi.php
http://www.bizimle.com/camdan_papuclar.php
http://www.bizimle.com/Cameron_Diaz.php
http://www.bizimle.com/cankan_yar_yar_sarki_sozleri.php
http://www.bizimle.com/cankiri_meslek_yuksek_okulu.php
http://www.bizimle.com/canli_skorlar.php
http://www.bizimle.com/canli-istek-hatti.php
http://www.bizimle.com/capkinlik_kacamaklar.php
http://www.bizimle.com/casino.php
http://www.bizimle.com/casino_kasinolar.php
http://www.bizimle.com/Catherine_Zeta_Jones.php
http://www.bizimle.com/cd_cogaltma.php
http://www.bizimle.com/cdkey_serial_no.php
http://www.bizimle.com/cdler.php
http://www.bizimle.com/cdler_cd.php
http://www.bizimle.com/cekici_olmak.php
http://www.bizimle.com/cem_yilmaz.php
http://www.bizimle.com/cem_yilmaz_yeni_reklam_filmi.php
http://www.bizimle.com/cep_melodi.php
http://www.bizimle.com/cep_siirleri.php
http://www.bizimle.com/cep_telefonlari.php
http://www.bizimle.com/cep_telefonlari_cep_telefonu.php
http://www.bizimle.com/cep_telefonu_icin_wavlar.php
http://www.bizimle.com/cep-melodi.php
http://www.bizimle.com/cep-telefon.php
http://www.bizimle.com/cep-telefonu.php
http://www.bizimle.com/ceza_fan_club.php
http://www.bizimle.com/cgi_scriptler.php
http://www.bizimle.com/chat_odalari.php
http://www.bizimle.com/chat_sesli_chat.php
http://www.bizimle.com/chat_sohbet.php
http://www.bizimle.com/christina_aguilera.php
http://www.bizimle.com/cicek_cicekler.php
http://www.bizimle.com/Cindy_crawford.php
http://www.bizimle.com/cine5_sifre_kirici_yeni.php
http://www.bizimle.com/cine5_sifreleri.php
http://www.bizimle.com/cinsellik.php
http://www.bizimle.com/cinsellik_ask.php
http://www.bizimle.com/cinsel-sapkinliklar-travestizm.php
http://www.bizimle.com/ciplak_kizlar.php
http://www.bizimle.com/ciplak_unluler_foto.php
http://www.bizimle.com/citir_kizlar.php
http://www.bizimle.com/claudia_schiffer.php
http://www.bizimle.com/cnn-turk.php
http://www.bizimle.com/cocuklar_cocuklar_icin.php
http://www.bizimle.com/cok-komik.php
http://www.bizimle.com/cok-ozel-resimler.php
http://www.bizimle.com/corn_pictures.php
http://www.bizimle.com/counter_strike.php
http://www.bizimle.com/crack_cdkey.php
http://www.bizimle.com/cs_1_6_full_download.php
http://www.bizimle.com/cv_ornekleri.php
http://www.bizimle.com/define-madenler.php
http://www.bizimle.com/deniz_denizler.php
http://www.bizimle.com/deniz_seki.php
http://www.bizimle.com/deprem_kandilli.php
http://www.bizimle.com/dergi_dergiler.php
http://www.bizimle.com/ders_notlari.php
http://www.bizimle.com/dershane_dersler.php
http://www.bizimle.com/dijital_yayin.php
http://www.bizimle.com/dijital-tv-sifreleri.php
http://www.bizimle.com/dijiturk_canli_yayin.php
http://www.bizimle.com/dilek_dilekler.php
http://www.bizimle.com/dini_ekartlar.php
http://www.bizimle.com/disk_diskler.php
http://www.bizimle.com/divx_filmler_download.php
http://www.bizimle.com/diyarbakir_bilim_tip.php
http://www.bizimle.com/dizi_diziler.php
http://www.bizimle.com/dizi_muzikleri.php
http://www.bizimle.com/dizi-muzikleri.php
http://www.bizimle.com/dogum_gunu.php
http://www.bizimle.com/dogum_gunu_davetiyeler.php
http://www.bizimle.com/dogum_gunu_hazir_cep_mesajlari.php
http://www.bizimle.com/dogum_gunu_kutlama_mesajlari.php
http://www.bizimle.com/dokuzuncu-hariciye-kogusu.php
http://www.bizimle.com/donem_odevi.php
http://www.bizimle.com/donem-odevi.php
http://www.bizimle.com/dost_dostluk.php
http://www.bizimle.com/dostluk_hazir_cep_mesajlari.php
http://www.bizimle.com/dosya_dosya_paylasimi.php
http://www.bizimle.com/doviz_dovuz_kurlari.php
http://www.bizimle.com/dowland-murat-kekilli.php
http://www.bizimle.com/download.php
http://www.bizimle.com/download-fza.php
http://www.bizimle.com/duvar_kagitlari.php
http://www.bizimle.com/duvar_yazilari.php
http://www.bizimle.com/duvar_yazisi.php
http://www.bizimle.com/duvar-kagitlari.php
http://www.bizimle.com/duzenle.php
http://www.bizimle.com/ebru-gundes-indir-dinle.php
http://www.bizimle.com/edebiyatla-ilgili-komik-fikralar.php
http://www.bizimle.com/efe-hotel.php
http://www.bizimle.com/egitim_egitimler.php
http://www.bizimle.com/egitim-ogretim.php
http://www.bizimle.com/eglence_eglencelik.php
http://www.bizimle.com/ehliyet-sinav-sonuclari.php
http://www.bizimle.com/ekran_monitor.php
http://www.bizimle.com/ekran_ses_kartlari.php
http://www.bizimle.com/el_ile_yuklenen_melodiler.php
http://www.bizimle.com/elazig_mhp_belediyesi.php
http://www.bizimle.com/Electra_Carmen.php
http://www.bizimle.com/elektronik-devre-cizim-programi.php
http://www.bizimle.com/eleman_elemanlar.php
http://www.bizimle.com/elite-turk.php
http://www.bizimle.com/Elle-Macpherson.php
http://www.bizimle.com/email_e-mailler.php
http://www.bizimle.com/emekli_emeklilik.php
http://www.bizimle.com/emlak_emlakcilar.php
http://www.bizimle.com/ems_logo.php
http://www.bizimle.com/en_atesli_taraftar.php
http://www.bizimle.com/en-guzel-ask-siirleri.php
http://www.bizimle.com/en-hizli-kosan-kus.php
http://www.bizimle.com/en-iyi-siteler.php
http://www.bizimle.com/ensest.php
http://www.bizimle.com/ensest_resimleri.php
http://www.bizimle.com/ericson-melodileri.php
http://www.bizimle.com/ericson-samsung-cep-telefonlari.php
http://www.bizimle.com/erkek_erkekler.php
http://www.bizimle.com/erkek-erkekler.php
http://www.bizimle.com/erotik_video_klipler.php
http://www.bizimle.com/erotik-ask-ve-cinsel-arzular.php
http://www.bizimle.com/erotik-hikayeler.php
http://www.bizimle.com/erotik-itiraflar.php
http://www.bizimle.com/erotik-resimler.php
http://www.bizimle.com/erotik-resimler-bayan.php
http://www.bizimle.com/erotizm.php
http://www.bizimle.com/erotizm-ve-cinsellik.php
http://www.bizimle.com/eski-antika-paralar.php
http://www.bizimle.com/espri_espriler.php
http://www.bizimle.com/Estella-Warren.php
http://www.bizimle.com/etek-alti-resimleri.php
http://www.bizimle.com/etkileyici-sozler.php
http://www.bizimle.com/Eva-Herzigova.php
http://www.bizimle.com/evli-kadinlar.php
http://www.bizimle.com/evlilik-hazir-cep-mesajlari.php
http://www.bizimle.com/ezan-ezanlar.php
http://www.bizimle.com/f1-formala-grand.php
http://www.bizimle.com/fal-tarot-fallari.php
http://www.bizimle.com/fantezi-resimleri.php
http://www.bizimle.com/fare-mause.php
http://www.bizimle.com/felsefe-kulubu.php
http://www.bizimle.com/felsefe-sozlugu.php
http://www.bizimle.com/fenerbahce_hazir_cep_mesajlari.php
http://www.bizimle.com/fenerbahce-hazir-cep-mesajlari.php
http://www.bizimle.com/fikra-komik-fikralar.php
http://www.bizimle.com/filiz-akin.php
http://www.bizimle.com/film-gibi.php
http://www.bizimle.com/fizyoloji.php
http://www.bizimle.com/flash.php
http://www.bizimle.com/flash_flashlar.php
http://www.bizimle.com/flashget-1.65.php
http://www.bizimle.com/flash-komikler.php
http://www.bizimle.com/flash-swish-yeni.php
http://www.bizimle.com/flort.php
http://www.bizimle.com/flower-flowers.php
http://www.bizimle.com/formula-1.php
http://www.bizimle.com/forum_basvurusu.php
http://www.bizimle.com/forum-forumlar.php
http://www.bizimle.com/free-mp3-download.php
http://www.bizimle.com/free-tv.php
http://www.bizimle.com/frikik-frikikler.php
http://www.bizimle.com/futbol-yorum.php
http://www.bizimle.com/galatasaray-hazir-cep-mesaj.php
http://www.bizimle.com/game_dos.php
http://www.bizimle.com/gazeteler.php
http://www.bizimle.com/gazeteler-gazete.php
http://www.bizimle.com/gece-yolculari-yeni-mp3.php
http://www.bizimle.com/gecmis_olsun_cep_mesajlari.php
http://www.bizimle.com/gecmis-olsun-hazir-cep-mesajlari.php
http://www.bizimle.com/gelinim-olurmusun.php
http://www.bizimle.com/gelinlik_modelleri.php
http://www.bizimle.com/gelinlik-modelleri.php
http://www.bizimle.com/gem-wk1.php
http://www.bizimle.com/gercek-muzikler.php
http://www.bizimle.com/gerekli_siteler.php
http://www.bizimle.com/gerekli-siteler.php
http://www.bizimle.com/geyik_komedi.php
http://www.bizimle.com/geyik-ve-otesi.php
http://www.bizimle.com/gezi-geziler.php
http://www.bizimle.com/gif-gifler.php
http://www.bizimle.com/Gisele-Bundchen.php
http://www.bizimle.com/giyilmesi-yasak-kisveler.php
http://www.bizimle.com/gizli-kamera-frikik-resimleri.php
http://www.bizimle.com/gizli-klasor-download.php
http://www.bizimle.com/gokyuzu-neden-mavidir.php
http://www.bizimle.com/gora-film-replikleri.php
http://www.bizimle.com/green-card-turkiye.php
http://www.bizimle.com/gta-kurtlar-vadisi.php
http://www.bizimle.com/gta-vice-city-yamalar.php
http://www.bizimle.com/gulmek-inin-nedenler.php
http://www.bizimle.com/gunesin-sicaklik-derecesi.php
http://www.bizimle.com/gunluk-guncel-ve%20gazete.php
http://www.bizimle.com/guzel_sozler1.php
http://www.bizimle.com/guzeller_galerisi.php
http://www.bizimle.com/guzel-mesajlar.php
http://www.bizimle.com/haber-borsa.php
http://www.bizimle.com/haber-haberler.php
http://www.bizimle.com/hakan-toprak.php
http://www.bizimle.com/Halle-Berry.php
http://www.bizimle.com/hande-yener.php
http://www.bizimle.com/harika-avci.php
http://www.bizimle.com/harita-haritalar.php
http://www.bizimle.com/Harry-Potter-Prisoner-of-Azkaban.php
http://www.bizimle.com/hasan-yasar.php
http://www.bizimle.com/hatiralar.php
http://www.bizimle.com/hatun-hatunlar.php
http://www.bizimle.com/hayat-hikayeleri.php
http://www.bizimle.com/hayir-hayir-olamaz.php
http://www.bizimle.com/hayvan-hayvanlaralemi.php
http://www.bizimle.com/hayvan-resimleri.php
http://www.bizimle.com/hazir_mesajlar.php
http://www.bizimle.com/hazir_mesajlar2.php
http://www.bizimle.com/haziran-gecesi.php
http://www.bizimle.com/haziran-gecesi-resimleri.php
http://www.bizimle.com/Heidi-Klum.php
http://www.bizimle.com/hex-renk-kodlari.php
http://www.bizimle.com/host-hosting.php
http://www.bizimle.com/hulya-avsar.php
http://www.bizimle.com/hulya-avsar-resimleri.php
http://www.bizimle.com/hz-ali.php
http://www.bizimle.com/ibrahim-tatlises.php
http://www.bizimle.com/iddaa_canli_maclar.php
http://www.bizimle.com/iddaa-bahis.php
http://www.bizimle.com/iddaa-iddaa-sonuclari.php
http://www.bizimle.com/ilac-fiyatlari.php
http://www.bizimle.com/ilahi-mp3ler.php
http://www.bizimle.com/ilce-ilceler.php
http://www.bizimle.com/ilginc.php
http://www.bizimle.com/ilginc-ilginc_resimler.php
http://www.bizimle.com/iliski-iliskiler.php
http://www.bizimle.com/ilk-bulusma.php
http://www.bizimle.com/ilk-ogretim.php
http://www.bizimle.com/ingiliz-ingilizce.php
http://www.bizimle.com/ingiltere-hotel-fiyatlari.php
http://www.bizimle.com/insaat-sirketleri.php
http://www.bizimle.com/insan-insanlar.php
http://www.bizimle.com/inter-internet.php
http://www.bizimle.com/internetten-para-kazanmak.php
http://www.bizimle.com/irakta-iskence-fotograflari.php
http://www.bizimle.com/irakta-kafa-kesme-goruntuleri.php
http://www.bizimle.com/irmak-unal-resimleri.php
http://www.bizimle.com/is-search.php
http://www.bizimle.com/isimler.php
http://www.bizimle.com/isimleri.php
http://www.bizimle.com/islami-ilahiler.php
http://www.bizimle.com/islam-islamiyet.php
http://www.bizimle.com/ismail-yk.php
http://www.bizimle.com/is-makinalari.php
http://www.bizimle.com/istanbul_cihangir.php
http://www.bizimle.com/italyan-yazarlar.php
http://www.bizimle.com/itiraf_itiraflar.php
http://www.bizimle.com/iyi_yolculuklar_hazir_cep_mesajlari.php
http://www.bizimle.com/iyiki_ask_var.php
http://www.bizimle.com/izmirin-doga-resimleri.php
http://www.bizimle.com/java-javalar.php
http://www.bizimle.com/java-sanal-makinasi.php
http://www.bizimle.com/java-scriptler.php
http://www.bizimle.com/Jennifer-Lopez.php
http://www.bizimle.com/Jenny-McCarthy.php
http://www.bizimle.com/Joshua-Malina.php
http://www.bizimle.com/joyturk.php
http://www.bizimle.com/kader-kaderimsin.php
http://www.bizimle.com/kadin_moda_bakim.php
http://www.bizimle.com/kadin-dogum-kontrolu.php
http://www.bizimle.com/kadin-kadinlar.php
http://www.bizimle.com/kadinlar_ve_erkekler.php
http://www.bizimle.com/kagit-icat.php
http://www.bizimle.com/kalp-kazanmak.php
http://www.bizimle.com/kalp-resimleri.php
http://www.bizimle.com/kandil_mesajlari.php
http://www.bizimle.com/kandil-mesajlari.php
http://www.bizimle.com/kapadokya.php
http://www.bizimle.com/kapi_kolu.php
http://www.bizimle.com/karadeniz.php
http://www.bizimle.com/kara-kalem-calismalari.php
http://www.bizimle.com/karikatur.php
http://www.bizimle.com/kart-kartlar.php
http://www.bizimle.com/kayahan-yeni-album.php
http://www.bizimle.com/kaya-metal.php
http://www.bizimle.com/kazaa.php
http://www.bizimle.com/kazaa_lite_download.php
http://www.bizimle.com/kendini_aska_birak.php
http://www.bizimle.com/kilavuz.php
http://www.bizimle.com/kirac-bedava-mp3-indir.php
http://www.bizimle.com/kita-kitalar.php
http://www.bizimle.com/kitapevleri.php
http://www.bizimle.com/kizlar.php
http://www.bizimle.com/klavye.php
http://www.bizimle.com/klip-klipler.php
http://www.bizimle.com/Knight_Online.php
http://www.bizimle.com/kolejli_kizlar.php
http://www.bizimle.com/komedi-komik.php
http://www.bizimle.com/komik_fikralar.php
http://www.bizimle.com/komik_flash_animasyon.php
http://www.bizimle.com/komik_gazete.php
http://www.bizimle.com/komik_karikaturler.php
http://www.bizimle.com/komik_resimler.php
http://www.bizimle.com/komik_sms.php
http://www.bizimle.com/komik_sms_sozleri.php
http://www.bizimle.com/komik_tv.php
http://www.bizimle.com/komikev.php
http://www.bizimle.com/komik-hazir-mesajlar.php
http://www.bizimle.com/komik-siteler.php
http://www.bizimle.com/komik-sozler.php
http://www.bizimle.com/komik-videolar.php
http://www.bizimle.com/konferans-duyurusu.php
http://www.bizimle.com/korpe_kizlar.php
http://www.bizimle.com/kpss.php
http://www.bizimle.com/kpss-sinav-sonuclari-aciklandi.php
http://www.bizimle.com/kredi-karti-basvurusu.php
http://www.bizimle.com/kredi-kredikarti.php
http://www.bizimle.com/Kultur_Sanat.php
http://www.bizimle.com/kultur-kulturel.php
http://www.bizimle.com/kulup-kulupler.php
http://www.bizimle.com/kurban-bayrami-mesajlari.php
http://www.bizimle.com/kurtlar_vadisi.php
http://www.bizimle.com/kurtlar_vadisi_melodileri.php
http://www.bizimle.com/kurtlar-vadisi.php
http://www.bizimle.com/kurtlar-vadisi-melodileri.php
http://www.bizimle.com/kurumlar-vergisi.php
http://www.bizimle.com/kutlama_hazir_cep_mesajlari.php
http://www.bizimle.com/kutlama-mesajlari.php
http://www.bizimle.com/Kylie-Minogue.php
http://www.bizimle.com/lez_lezbiyen.php
http://www.bizimle.com/lise.php
http://www.bizimle.com/liseler-kolejler.php
http://www.bizimle.com/liseli_kizlar.php
http://www.bizimle.com/liseli_kizlarin_sex_resimleri.php
http://www.bizimle.com/liseli-dilara.php
http://www.bizimle.com/liseli-kizlarla-sinirsiz-sohbet.php
http://www.bizimle.com/liseli-lolitalar.php
http://www.bizimle.com/lise-liseler.php
http://www.bizimle.com/list-hotel-antalya.php
http://www.bizimle.com/logomelodi.php
http://www.bizimle.com/logo-melodi.php
http://www.bizimle.com/love-ask-mesajlari.php
http://www.bizimle.com/mac_maclar.php
http://www.bizimle.com/mac-maclar.php
http://www.bizimle.com/magazin.php
http://www.bizimle.com/mailturk.php
http://www.bizimle.com/maket-otomobil.php
http://www.bizimle.com/mani-mesajlari.php
http://www.bizimle.com/manken-frikikleri.php
http://www.bizimle.com/mankenler.php
http://www.bizimle.com/manzaralar.php
http://www.bizimle.com/manzara-resimleri.php
http://www.bizimle.com/maria-sharapova.php
http://www.bizimle.com/mario-oyunu.php
http://www.bizimle.com/markalar.php
http://www.bizimle.com/meb-lise-ilkokul.php
http://www.bizimle.com/medya.php
http://www.bizimle.com/mehmet-ali-nuroglu.php
http://www.bizimle.com/memurlar.php
http://www.bizimle.com/mesaj-at.php
http://www.bizimle.com/messenger-hata.php
http://www.bizimle.com/midi-midiler.php
http://www.bizimle.com/milli-piyango.php
http://www.bizimle.com/mirc-reklam-botu.php
http://www.bizimle.com/mirc-scriptler.php
http://www.bizimle.com/misrosoft-front-pages-2003.php
http://www.bizimle.com/mobilya.php
http://www.bizimle.com/modem-adsl.php
http://www.bizimle.com/modem-modemler.php
http://www.bizimle.com/modifiye.php
http://www.bizimle.com/monica-bellucci.php
http://www.bizimle.com/motorlu_tasitlar.php
http://www.bizimle.com/motor-motorsiklet.php
http://www.bizimle.com/motorola_cep_telefonu_modelleri.php
http://www.bizimle.com/mp3-mp3ler.php
http://www.bizimle.com/msn-arkadas.php
http://www.bizimle.com/msn-arkadaslik-siteleri.php
http://www.bizimle.com/msn-messenger.php
http://www.bizimle.com/muhabbet.php
http://www.bizimle.com/muhasebe-elemanlari.php
http://www.bizimle.com/murat-gogebakan.php
http://www.bizimle.com/muslum-gurses.php
http://www.bizimle.com/mustafa_kemal_ataturk.php
http://www.bizimle.com/mustafa-sandal.php
http://www.bizimle.com/mutfak.php
http://www.bizimle.com/muzik.php
http://www.bizimle.com/muzik_yeni_albumler.php
http://www.bizimle.com/muzik-sistemleri.php
http://www.bizimle.com/muzik-siteleri.php
http://www.bizimle.com/nokia-wav.php
http://www.bizimle.com/nasil-oynanir.php
http://www.bizimle.com/natalia-nataly.php
http://www.bizimle.com/nazan-oncal-mp3leri.php
http://www.bizimle.com/naz-elmas-resimleri.php
http://www.bizimle.com/need-for-speed-underground.php
http://www.bizimle.com/nefret-mesajlari.php
http://www.bizimle.com/nez-frikikleri.php
http://www.bizimle.com/noel-dayi.php
http://www.bizimle.com/nokia_cep_telefonu_modelleri.php
http://www.bizimle.com/nokia_melodileri.php
http://www.bizimle.com/nokia-cep-telefonlari.php
http://www.bizimle.com/nokia-oyunlari.php
http://www.bizimle.com/norton-antivirus.php
http://www.bizimle.com/nostaji-mp3.php
http://www.bizimle.com/numara.php
http://www.bizimle.com/numaralar.php
http://www.bizimle.com/oflu-hoca.php
http://www.bizimle.com/ogrenci.php
http://www.bizimle.com/ogretmen1.php
http://www.bizimle.com/ogretmenler.php
http://www.bizimle.com/okey-oyunu.php
http://www.bizimle.com/okullar.php
http://www.bizimle.com/online_bahis.php
http://www.bizimle.com/online_muzik-dinle.php
http://www.bizimle.com/online_oyunlar.php
http://www.bizimle.com/online-muzik.dinle.php
http://www.bizimle.com/opusmek.php
http://www.bizimle.com/ordu-resimleri.php
http://www.bizimle.com/Orospu-MaNKeNLeR.php
http://www.bizimle.com/oss.php
http://www.bizimle.com/osym-sonuclari.php
http://www.bizimle.com/otel-hoteller.php
http://www.bizimle.com/oto-lastik-resimleri.php
http://www.bizimle.com/otomobil-araba.php
http://www.bizimle.com/otomobil-resimleri.php
http://www.bizimle.com/oyun_hileleri.php
http://www.bizimle.com/oyun-hileleri.php
http://www.bizimle.com/oyun-oyunlar.php
http://www.bizimle.com/oyun-siteleri.php
http://www.bizimle.com/ozge-ozberk-resimleri.php
http://www.bizimle.com/ozlem-mesajlari.php
http://www.bizimle.com/ozlem-ozlemek.php
http://www.bizimle.com/ozlu-mesajlar.php
http://www.bizimle.com/ozur_mesajlari.php
http://www.bizimle.com/ozur-mesajlari.php
http://www.bizimle.com/Pamela-Anderson.php
http://www.bizimle.com/paparazi_magazin.php
http://www.bizimle.com/pc-computer.php
http://www.bizimle.com/pekiyi.php
http://www.bizimle.com/pembesayfa.php
http://www.bizimle.com/Penelope-Cruz.php
http://www.bizimle.com/penis-rahatsizliklari.php
http://www.bizimle.com/php-scriptler.php
http://www.bizimle.com/pinar-kurkut.php
http://www.bizimle.com/plan-planlar.php
http://www.bizimle.com/platonik-ask.php
http://www.bizimle.com/playboy-kizlari.php
http://www.bizimle.com/polifonik-melodi.php
http://www.bizimle.com/Porno-Sex.php
http://www.bizimle.com/posta-kodlari.php
http://www.bizimle.com/program_download.php
http://www.bizimle.com/program-arsivi.php
http://www.bizimle.com/psikiyatri.php
http://www.bizimle.com/pusulayi-kim-icat-etti.php
http://www.bizimle.com/radyo-dinle.php
http://www.bizimle.com/ramazan-bayrami-mesajlari.php
http://www.bizimle.com/rejim-diyet.php
http://www.bizimle.com/renkli-animasyon.php
http://www.bizimle.com/renkli-logo.php
http://www.bizimle.com/renkli-resimli-mesajlar.php
http://www.bizimle.com/resimler.php
http://www.bizimle.com/resimli-mesajlar.php
http://www.bizimle.com/rize-artvin.php
http://www.bizimle.com/rus-hackerlar.php
http://www.bizimle.com/ruya.php
http://www.bizimle.com/ruya-tabirleri.php
http://www.bizimle.com/ruya-yorumlari.php
http://www.bizimle.com/sadece-sex.php
http://www.bizimle.com/safranbolu.php
http://www.bizimle.com/saglikli-beslenme.php
http://www.bizimle.com/Sagopa-Kajmer.php
http://www.bizimle.com/sahibinden-kiralik-daireler.php
http://www.bizimle.com/sahin-mgp.php
http://www.bizimle.com/sair-sairler.php
http://www.bizimle.com/saka-sakalar.php
http://www.bizimle.com/samsung_cep_telefonu_modelleri.php
http://www.bizimle.com/sanal-sex.php
http://www.bizimle.com/sanat-sanatlar.php
http://www.bizimle.com/sanayi-rehberi.php
http://www.bizimle.com/Sandra-Bullock.php
http://www.bizimle.com/sans-oyunlari.php
http://www.bizimle.com/sari-yildiz.php
http://www.bizimle.com/sans_dilekleri_hazir_cep_mesajlari.php
http://www.bizimle.com/sarkicilar.php
http://www.bizimle.com/sarki-mesajlari.php
http://www.bizimle.com/sarkisozu.php
http://www.bizimle.com/satilik-turkcell-hat.php
http://www.bizimle.com/sayfa-yukleniyor.php
http://www.bizimle.com/sayisal-loto.php
http://www.bizimle.com/script_scriptler.php
http://www.bizimle.com/seda-sayan-parcalari.php
http://www.bizimle.com/sehir-sehirler.php
http://www.bizimle.com/seks-hikayeleri.php
http://www.bizimle.com/semra-hanim.php
http://www.bizimle.com/seray-sever.php
http://www.bizimle.com/seslichat.php
http://www.bizimle.com/sesli-chat.php
http://www.bizimle.com/Seslisohbet.php
http://www.bizimle.com/sesli-sozluk.php
http://www.bizimle.com/sevda-karababa.php
http://www.bizimle.com/sevgi_forum.php
http://www.bizimle.com/sevgi_mesajlari.php
http://www.bizimle.com/sevgi_sevgiliye.php
http://www.bizimle.com/sevgi_siirleri.php
http://www.bizimle.com/sevgi_sozleri.php
http://www.bizimle.com/sevgili_ne_arar.php
http://www.bizimle.com/sevgililer_gunu.php
http://www.bizimle.com/sevgiliye-mesajlar.php
http://www.bizimle.com/sevgi-mesajlari.php
http://www.bizimle.com/sevgi-sevgili.php
http://www.bizimle.com/sevgiye-ve-aska-dair.php
http://www.bizimle.com/sex_hatiralari.php
http://www.bizimle.com/sex_hikayeleri.php
http://www.bizimle.com/sex-arkadasiniz-cevriye.php
http://www.bizimle.com/sex-filmi.php
http://www.bizimle.com/sexhikayeleri.php
http://www.bizimle.com/sex-partner.php
http://www.bizimle.com/seyahat.php
http://www.bizimle.com/sezen-aksu.php
http://www.bizimle.com/showtv_ikinci_bahar.php
http://www.bizimle.com/showtv-frekans.php
http://www.bizimle.com/sibel_can_resimleri.php
http://www.bizimle.com/sibel-Can.php
http://www.bizimle.com/Sibel-Kekilli.php
http://www.bizimle.com/siemens_cep_telefonu_modelleri.php
http://www.bizimle.com/sifali_bitkiler.php
http://www.bizimle.com/sifre-kirici.php
http://www.bizimle.com/siir-siirler.php
http://www.bizimle.com/Sima-Karatar.php
http://www.bizimle.com/simens.php
http://www.bizimle.com/sinav.php
http://www.bizimle.com/sinav-sorulari.php
http://www.bizimle.com/sinema.php
http://www.bizimle.com/sinema-sinemalar.php
http://www.bizimle.com/siyaset-siteleri.php
http://www.bizimle.com/sms.php
http://www.bizimle.com/sms_mesajlari.php
http://www.bizimle.com/sohbet_aski.php
http://www.bizimle.com/sohbetodalari.php
http://www.bizimle.com/sohbetodasi.php
http://www.bizimle.com/son-dakika-haber.php
http://www.bizimle.com/son-dakika-spor.php
http://www.bizimle.com/Sony_Ericsson_cep_telefonu_modelleri.php
http://www.bizimle.com/sorular.php
http://www.bizimle.com/sozluk.php
http://www.bizimle.com/sp2-kurulum-hatasi-lisansli.php
http://www.bizimle.com/spor_mesajlari.php
http://www.bizimle.com/sporcu.php
http://www.bizimle.com/spor-sporlar.php
http://www.bizimle.com/sports.php
http://www.bizimle.com/ssk_hizmet_dokumu.php
http://www.bizimle.com/ssk-emekli.php
http://www.bizimle.com/SSK-Hizmet-Dokumu.php
http://www.bizimle.com/supermp3.php
http://www.bizimle.com/superonline.php
thanks
best regards.
Nice article.
Nice article and very fantastic helpful site.
Good art
thanks you
thankss…is veryy good!
hellooww,,good
us unredgraund
thankss…is very good…us unredgraund
thanks you
thanks you
ı like this site.
very good site.
good infomation
Love a you blog
K5FtH7 nhqnxzxyxwip, [url=http://lcmbguadkuht.com/]lcmbguadkuht[/url], [link=http://kktfmgmazaww.com/]kktfmgmazaww[/link], http://ejwmnrqkhyhp.com/
per scaricare foto da cellulare , foto superdotati gratis , tatuaggio disegni immagini foto , foto superdotati gratis , universita fotografia , 275 foto venezia , it professione fotografo , tatuaggio disegni immagini foto , foto chiappe, foto superdotati gratis , it professione fotografo , tatuaggio disegni immagini foto , foto squadra napoli , foto superdotati gratis , foto superdotati gratis ,
foto porno sesso estremo animale , fiori fotografie , album foto alice it , foto porno sesso estremo animale , foto piede vip , fiori fotografie , foto ragazza pelosa gratis , piu bella foto paesaggio , foto camera ottiche kodak , foto topless amatoriale , foto aerea parma , bella figa vogliosa foto gratis , foto ragazza pelosa gratis , foto sesso con cavalli , bella figa vogliosa foto gratis ,
fototifo it , wallpaper foto, foto gratis pompino tettona sborrata , fototifo it , venezia fotografia , claudia antonelli foto , claudia antonelli foto , foto di como , annuncio coppia foto , foto hello kitty , annuncio coppia foto , claudia antonelli foto , cazzo enormi foto gratis , claudia antonelli foto , foto fiat uno ,
foto sampdoria roma , praga viaggio foto, ariel bunny melodey foto lesbica gratis , foto loredana damato , foto roberta giarrusso , album fotografico foto matrimonio , foto donna strane , foto unghia rossa , foto unghia rossa , album fotografico foto matrimonio , siracusa foto , praga viaggio foto, foto sampdoria roma , foto loredana damato , foto unghia rossa ,
fotografia d amore , foto daniele interrante , www album foto virgilio it , foto donna porca amatoriale , foto donna bella , foto gatti persiani , mp4 foto , foto angelina jolie nuda , foto asia argento porno star , foto donna porca amatoriale , ana caterina morariu foto , foto angelina jolie nuda , foto angelina jolie nuda , foto angelina jolie nuda , foto di fighe nude ,
foto mastoplastica , foto carra , foto invia , foto labbra , foto fontana di trevi , foto amatoriale donne , foto piedi amatoriali , foto carra , foto piedi amatoriali , pete doherty foto, foto mamma amica , federica foto zarri , foto fontana di trevi , foto amatoriale donne , foto amatoriale donne ,
fotocopiatrice stampante scanner , foto oscar gutierrez , fotocopiatrice stampante scanner , foto oscar gutierrez , foto simone tomassini dolce nera , foto vedere scaricare lesbica , foto piede sex collant , free foto porno , agenzie fotomodelli , ragazzi nudi foto , foto transessuale piemonte , foto simone tomassini dolce nera , foto ricky martin giovanissimo , giovani troie foto, il foto amatore ,
fotocamera digitale subacquea , foto porno feet fetish gratis , foto fiore calle , foto autoreggenti , foto porno feet fetish gratis , foto modella tiziana re it , sito gratis ragazzo gay sex foto , foto modella tiziana re it , clitoride enorme freefoto , trovare foto , foto autoreggenti , trovare foto , fotografare i quadri , montaggio foto dvd , foto annuncio roma ,
antonella clerici foto , foto fernando vitale , dolci foto, foto di bali , foto sfilata intimo , antonella clerici foto , foto sesso casalinghe , vecchia porca cinquantenne foto amatoriale , foto fernando vitale , foto sfilata intimo , dolci foto, foto di bali , dolci foto, nuova macchina fotografica , foto spazio ,
foto di big , foto di piedi nudi , foto di piedi nudi , programma fotomontaggio download , cellulare nokia foto camera , foto annuncio liguria , foto di piedi nudi , foto lavoro multidisciplinare , foto cuori , carta fotografica rotolo , foto annuncio brescia , foto sexy sex moglie , ragazza vergine foto , foto lavoro multidisciplinare , ragazza vergine foto ,
cuba foto , fotografia campagna stampa quotidiano nazionale audi , foto mamma e figlia , foto mamma e figlia , fotografia finale champion league 2003 , foto x desktop , fotografia campagna stampa quotidiano nazionale audi , foto x desktop , benito mussolini foto , foto sette nano , foto annuncio gratis scambista coppia , foto neonato prematuri , album fotografico tool gratis , lucia foto, foto neonato prematuri ,
thank you very good team cuta foto low