[jQuery] Re: [Tooltip Plugin] Problem with tooltip and live event

2010-02-07 Thread Renatho
Hi Vengiss, $('#preview_'+id_mercancia).tooltip({ tip: '#img_'+id_mercancia, effect: 'fade', }); The error is the last comma. Correct: $('#preview_'+id_mercancia).tooltip({ tip: '#img_'+id_mercancia, effect: 'fade', }); This error doesn't affect IE and Safari because they

[jQuery] Re: [Tooltip Plugin] Problem with tooltip and live event

2010-02-07 Thread Renatho
the error is the last comma in literal object: the correct is 6. effect: 'fade' 7.}); On 6 fev, 20:35, vengiss veng...@fastmail.fm wrote: Hi, I have a table in my site that shows a list of products I get from a DB, each one has and image (thats loaded on a hidden div). I'd like

[jQuery] Re: (tooltip) Markup problem

2009-10-14 Thread shapper
On Oct 12, 8:57 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: That sounds like you validate a page for the sake of validation. I think thats beneath the point, therefore I don't get your argument. Do you worry about accessibility? If so, did you test the tooltip with a screenreader?

[jQuery] Re: (tooltip) Markup problem

2009-10-14 Thread Jörn Zaefferer
You could give the jQuery UI tooltip a try. Source is here: http://jquery-ui.googlecode.com/svn/branches/dev/ui/jquery.ui.tooltip.js Theme: http://jquery-ui.googlecode.com/svn/branches/dev/themes/base/ui.tooltip.css Visual test (sort of demo) here:

[jQuery] Re: (tooltip) Markup problem

2009-10-14 Thread Don Dunbar
Hi, documents can contain as many H3 headers as are needed. In a tooltip, 'H3' makes the most sense because a single page generally should have only one 'H1' and 'H2' should be reserved for segment heads. So it's not a big issue to have the 'H3' in the tooltip dialog and still remain semantically

[jQuery] Re: (tooltip) Markup problem

2009-10-12 Thread Jörn Zaefferer
That sounds like you validate a page for the sake of validation. I think thats beneath the point, therefore I don't get your argument. Do you worry about accessibility? If so, did you test the tooltip with a screenreader? Afaik thats the best way to test for accessibility; validation not so much.

[jQuery] Re: tooltip - how do i remove an existing tooltip

2009-10-02 Thread Rick Faircloth
How about giving the tooltip an identifier, such as a class name, and remove the class once the validation is satisfied. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of cgipson Sent: Friday, October 02, 2009 1:51 PM To: jQuery

[jQuery] Re: [tooltip] integration with jQuery UI

2009-08-17 Thread Jörn Zaefferer
Works fine for me with extraClass. To change it once for all tooltips: $.tooltip.defaults.extraClass = ui-widget ui-widget-content ui-corner-all; Jörn On Thu, Aug 13, 2009 at 8:25 PM, tvanfossontvanfos...@gmail.com wrote: I've made some minor modifications to the Tooltip plugin to have it

[jQuery] Re: [tooltip] Persistence

2009-07-21 Thread Karl Swedberg
I don't think you can do that with Tooltip. But you can with clueTip: plugins.learningjquery.com/cluetip/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 21, 2009, at 5:40 AM, Hogsmill wrote: Is it possible to make tooltoips persistent, i.e. you have

[jQuery] Re: [tooltip] Fade on IE

2009-07-20 Thread Michael Smith
I've struggled with similar problems - and have reluctantly had to use a gif instead. Although the image might not be as nice, it does actually seem to work fine in IE On Mon, Jul 20, 2009 at 1:42 AM, apuredolapure...@gmail.com wrote: Hi, I am using and modifying the sample demo page and have

[jQuery] Re: [tooltip] Fade on IE

2009-07-20 Thread Liam Potter
Yep, simply no way around this except to not use a PNG or not to animate the opacity. Michael Smith wrote: I've struggled with similar problems - and have reluctantly had to use a gif instead. Although the image might not be as nice, it does actually seem to work fine in IE On Mon, Jul 20,

[jQuery] Re: Tooltip for hotspot (area shape)

2009-07-17 Thread Charlie
have used it on area tags, no differennt than any other tag,, follow standard instructions e...@uitenbogaard.nl wrote: Hi, I'am looking for a solution to use dynamic tooltips when mouse comes over a hotspot (several hotspots in an image). I like the tooltip on the homepage of this forum

[jQuery] Re: Tooltip for hotspot (area shape)

2009-07-17 Thread e...@uitenbogaard.nl
I tried, but din'nt funcyion. All new for me. Can you tell me. On 17 jul, 21:44, Charlie charlie...@gmail.com wrote: have used it on area tags, no differennt than any other tag,, follow standard instructionse...@uitenbogaard.nlwrote:Hi, I'am looking for a solution to use dynamic tooltips

[jQuery] Re: [tooltip] dont close tooltip after click

2009-06-25 Thread Frédéric Pillonel
Hi, I don't know JQuery or JavaScript much, but tooltip takes what's in 'title' field of its target to create header and body when page loads. I suppose it creates and put in DOM tree everything else like onMouseOver() or other functions, so it should be possible to just modify DOM tree to take

[jQuery] Re: Tooltip placement

2009-06-07 Thread Gustavo Salomé
*width*change the hover function to get the object width and remove the mousemove function. Do somenthing like: this.tooltip = function(){ /* CONFIG */ xOffset = 20; yOffset = 50; // these 2 variable determine popup's distance from the cursor

[jQuery] Re: [tooltip] Blocking tooltips

2009-05-28 Thread Jörn Zaefferer
In the quoted example, the block function is passed as the event handler. In your example, you just reference, but don't call it. Easy to fix: $(#block).click(function() { $.tooltip.block(); alert

[jQuery] Re: [tooltip] Blocking tooltips

2009-05-28 Thread fredriley
Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across that solution eventually, but I really wanted to know *why* it wasn't working, which you've now explained. I had a look in the plugin docs for block() but couldn't see it mentioned. Is it an 'undocumented feature', or have I

[jQuery] Re: [tooltip] overriding definition

2009-05-05 Thread Jörn Zaefferer
Try this: 1. $([title]:not(.fast))... 2. $([title].fast) Jörn On Tue, May 5, 2009 at 11:30 AM, nomad jeste.z...@gmail.com wrote: Newbies question: I need different definitions of tooltip on one page: 1/ Replace the default tooltip of all title elements $('*[title]').tooltip({      

[jQuery] Re: [tooltip] overriding definition

2009-05-05 Thread nomad
Wow .. how easy, works, thank you.

[jQuery] Re: [tooltip] overriding definition

2009-05-05 Thread nomad
Wow .. how easy, works, thank you.

[jQuery] Re: [tooltip] Way to make the tooltip plugin accessible to browsers with no mouseover?

2009-04-08 Thread Jörn Zaefferer
How does the iPhone handle native tooltips? According to quirksmode.org, the mouseover event is actually fired. Just not quite in the usual way: http://www.quirksmode.org/blog/archives/2008/08/iphone_events.html Jörn On Wed, Apr 8, 2009 at 12:55 PM, Emmett emmett.the.s...@gmail.com wrote:

[jQuery] Re: [tooltip]

2009-04-01 Thread fredriley
Sorry, please ignore this message, which I posted without a proper subject line hence it's appending to this thread. I've reposted it in a new thread with the subject [tooltip] Tooltips out of position with imagemaps. Cheers Fred

[jQuery] Re: tooltip container flowing off page in Safari 4, not resizing as should

2009-03-30 Thread roryreiff
Does anyone know if this can be easily addressed? It is Safari 4 Mac, to be precise. Thanks, On Mar 10, 8:52 am, roryreiff roryre...@gmail.com wrote: Hi there, In my implementation of the tooltip plugin, I have notice that in Safari 4 the tooltip does not resize when the cursor moves

[jQuery] Re: tooltip container flowing off page in Safari 4, not resizing as should

2009-03-30 Thread roryreiff
Does anyone know if this can be easily addressed? It is Safari 4 Mac, to be precise. Thanks, On Mar 10, 8:52 am, roryreiff roryre...@gmail.com wrote: Hi there, In my implementation of the tooltip plugin, I have notice that in Safari 4 the tooltip does not resize when the cursor moves

[jQuery] Re: [tooltip]

2009-03-30 Thread Jörn Zaefferer
Check out http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_AJAX_request.3F Jörn On Mon, Mar 30, 2009 at 4:13 PM, jmmccoy...@googlemail.com jmmccoy...@googlemail.com wrote: Hi, im using your jquery tooltip although I have a question about doing something bespoke I call the

[jQuery] Re: [tooltip] help please

2009-03-01 Thread paulmo
thanks for replies. applied sean o's corrections and found/applied screen.css (below); script's still not executing. other suggestions? thanks html, body, div, span, applet, object, iframe, 2h1, h2, h3, h4, h5, h6, p, blockquote, pre, 3a, abbr, acronym, address, big, cite, code, 4del, dfn, em,

[jQuery] Re: [tooltip] help please

2009-02-28 Thread Charlie Tomlinson
just went through that download today to implement. I ended up grabbing screen.css from project demo site and found some of the tooltip components on there and all works well paulmo wrote: am not getting the stylized popup window (generic yellow box instead). all files in my server root

[jQuery] Re: [tooltip] help please

2009-02-28 Thread Sean O
Paul, Two suggestions: 1) remove the dimensions plugin script (it's integrated into jQuery as of this version) 2) close your doc ready function with parens semicolon: $(function() { $('#set1 *').tooltip(); }); SEAN O http://www.sean-o.com paulmo wrote: am not getting the stylized

[jQuery] Re: [tooltip] Is there a way to make tooltip recognize modified title attributes?

2009-02-19 Thread Jörn Zaefferer
You could try to use the bodyHandler-callback-option. Put the updated title into a custom attribute, and return that value in the bodyHandler. Jörn On Thu, Feb 19, 2009 at 6:00 PM, little brittle sean...@gmail.com wrote: I am trying to change the tooltip message based on user interaction,

[jQuery] Re: [tooltip]

2009-02-13 Thread sccr410
Perfect, thanks!

[jQuery] Re: [tooltip]

2009-02-09 Thread Aaron Gundel
Hey there, in your tooltip div, add the style... white-space: nowrap; This will cause your text to appear on the same line. Hope this helps, Aaron On Mon, Feb 9, 2009 at 6:00 PM, sccr410 de...@ashwebstudio.com wrote: Having issues with the tooltip plugin -

[jQuery] Re: tooltip - image preview does not respect window border

2009-02-08 Thread snooper
Hi there I am in the same position. I see you suggested a different script all together, from bassistance.de, instead of the original one from cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery . The one you suggested is much more than i need. Was anyone able to modify the

[jQuery] Re: [tooltip] Upgraded to jquery 1.3.1 Tooltips doesn't show up

2009-02-03 Thread Jörn Zaefferer
Could you provide a testpage? I've tested tooltip with 1.3.1 and it works just fine. Jörn On Tue, Feb 3, 2009 at 7:27 PM, ksuess k.su...@crojewe.ch wrote: Upgraded to jquery 1.3.1 Tooltips doesn't show up

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
Thanks, I replaced jquery.tooltip.js and jquery.tooltip.css with the new versions and the tooltips stopped working alltogether. In my wordpress theme folder I have a jquery directory. In this directory I have the following files: global.js jquery.js jquery.tabs.css jquery.tabs.pack.js

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread Jörn Zaefferer
You probably need to upgrade jQuery as well, the tooltip plugin was released with support for 1.2.6. Jörn On Mon, Jan 26, 2009 at 7:50 PM, CNN_news nagit...@gmail.com wrote: Thanks, I replaced jquery.tooltip.js and jquery.tooltip.css with the new versions and the tooltips stopped working

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread Karl Swedberg
Also, it looks like you're loading 2 copies of jQuery: jquery.js and jquery-1.1.3.1.pack.js That can't help matters. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 26, 2009, at 4:19 PM, Jörn Zaefferer wrote: You probably need to upgrade jQuery as

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
Hi Karl, sorry I have been working on this and I think you caught me halfway though. I think I updated jquery correctly. But it still does not work correctly and the opacity is wrong in FF and Opera (ok in IE). /Nagita On Jan 26, 4:04 pm, Karl Swedberg k...@englishrules.com wrote: Also,

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
ok, As usual after 4 hours messing with this and then posting on this list, it started working 5 minutes later. /Nagita On Jan 26, 5:16 pm, CNN_news nagit...@gmail.com wrote: Hi Karl, sorry I have been working on this and I think you caught me halfway though. I think I updated jquery

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-25 Thread Jörn Zaefferer
It looks like you got an old version of the plugin. Try the latest release, it has built-in support for repositioning the tooltip at the viewport border: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Jörn On Sat, Jan 24, 2009 at 11:26 PM, CNN_news nagit...@gmail.com wrote:

[jQuery] Re: [tooltip] - Hover over tooltip so you can add a link

2008-12-29 Thread Jörn Zaefferer
The site isn't reachable... Jörn On Sat, Dec 27, 2008 at 8:36 PM, kenitech keithhop...@gmail.com wrote: This is an easy way to hack Jorn's tooltip so you may hover over the tooltip and click on a link: http://www.artworknotavailable.com/2008/12/27/jorn-zaefferers-tooltip-hacks/ hack of:

[jQuery] Re: [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-05 Thread Jörn Zaefferer
The code looks fine. Could you file a ticket for this? http://dev.jquery.com/newticket (requires registration) Thanks Jörn On Fri, Dec 5, 2008 at 2:46 AM, Eric P [EMAIL PROTECTED] wrote: Hi, Just started messing around with Jörn's tooltip plugin, and I think I found a bug while using IE 6

[jQuery] Re: [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-05 Thread Eric P
Done. http://dev.jquery.com/ticket/3689 Thanks, Eric Jörn Zaefferer wrote: The code looks fine. Could you file a ticket for this? http://dev.jquery.com/newticket (requires registration) Thanks Jörn On Fri, Dec 5, 2008 at 2:46 AM, Eric P [EMAIL PROTECTED] wrote: Hi, Just started

[jQuery] Re: [tooltip] Image preview choppy when switching from right to left side of mouse pointer?

2008-12-03 Thread Jörn Zaefferer
Sorry, no idea. Setting #tooltip { width: 284px } doesn't help at all. You could replace with the source files with unminified ones and use Firebug to profile the code. Jörn On Tue, Dec 2, 2008 at 7:13 PM, deronsizemore [EMAIL PROTECTED] wrote: Sorry about that. Here's the test page that

[jQuery] Re: [tooltip] Image preview choppy when switching from right to left side of mouse pointer?

2008-12-02 Thread Jörn Zaefferer
You could set a fixed with for the tooltip. That should improve the positioning. Jörn On Tue, Dec 2, 2008 at 3:08 PM, deronsizemore [EMAIL PROTECTED] wrote: I've implemented http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ plugin at this test page:

[jQuery] Re: [tooltip]

2008-12-02 Thread Jörn Zaefferer
The tooltip should work with all elements that trigger a mouseover event and have a title. Though there are known problems with selects, so problems with checkboxes are not unlikely, too. You could try to add a label to the checkbox and put the title on the label. Link it via the for-attribute

[jQuery] Re: [tooltip] Image preview choppy when switching from right to left side of mouse pointer?

2008-12-02 Thread Jörn Zaefferer
You example code didn't quite make it through. Could you provide a testpage? Maybe via jsbin.com Jörn On Tue, Dec 2, 2008 at 6:50 PM, deronsizemore [EMAIL PROTECTED] wrote: I'm not sure if I did it right or not, but I added the width too this line: return $( ).attr(src, this.src); Still

[jQuery] Re: [tooltip] Image preview choppy when switching from right to left side of mouse pointer?

2008-12-02 Thread deronsizemore
I'm not sure if I did it right or not, but I added the width too this line: return $( ).attr(src, this.src); Still not change after adding the width in. I think it's related to how big the image actually is for whatever reason. The other images don't do it, just the ones next to the right

[jQuery] Re: [tooltip] Image preview choppy when switching from right to left side of mouse pointer?

2008-12-02 Thread deronsizemore
Sorry about that. Here's the test page that I'm continuing to work on: http://www.randomjabber.com/test/logogala/gallery_tooltip.html You can see the updated code by viewing the head via the source. Thanks, Jörn Zaefferer-2 wrote: You example code didn't quite make it through.

[jQuery] Re: Tooltip made from two different elements. Hover() Issue

2008-12-02 Thread brian
You could make the fadeout last longer $(document).ready(function(){ $(B.toolTipCaller).hover(function(event){ $(Div.toolTip).fadeIn(slow); }, function(){ $(Div.toolTip).fadeOut(x);// where x = no. of milliseconds to fade }); /* to bring the tooltip back to full

[jQuery] Re: [tooltip]

2008-11-17 Thread Geert Baven
add the toolme class in your tooltip script: $.tooltip = { blocked: false, defaults: { delay: 200, fade: false, showURL: true, extraClass: toolMe, top: 15, left: 15, id: tooltip },

[jQuery] Re: [tooltip] HTML in the tooltip?

2008-11-07 Thread Hector Virgen
You need to encode the value of the title attribute with htmlentities(): div title=She said quot;Hello, there!quot;/div -Hector On Fri, Nov 7, 2008 at 10:55 AM, samtherobot [EMAIL PROTECTED] wrote: I have a problem where Drupal is outputting HTML that is for the tooltip. Any quotes

[jQuery] Re: [tooltip] Title attribute reload (ajax)

2008-11-06 Thread Jörn Zaefferer
Sounds like this: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F Jörn On Thu, Nov 6, 2008 at 12:47 PM, Anasha [EMAIL PROTECTED] wrote: Hello, I'm facing some trouble with tooltip plugin. I use it on pictures for description and

[jQuery] Re: [ToolTip] Suggestion/queestion

2008-11-04 Thread Jörn Zaefferer
Maybe this: a href=# title=tooltipmessage onmouseover=delete this.onmouseover; $(this).tooltip();text/a Jörn On Tue, Nov 4, 2008 at 3:50 PM, AenimA [EMAIL PROTECTED] wrote: Hello, Is it possible to use the tooltips in some similar fashion. a href=# onmouseover=showToolTip(this,

[jQuery] Re: [ tooltip ]

2008-11-01 Thread PiHi
img src='test.png' title='Hello - this image is called lt;testgt;' / On 11月1日, 下午1时41分, .nu [EMAIL PROTECTED] wrote: Hi. Not sure this is a bug, but having text inside diamond brackets, the text wont show. for example: img src='test.png' title=Hello - this image is called test. / the

[jQuery] Re: [tooltip] New wrapper around #tooltip

2008-10-31 Thread Jörn Zaefferer
Currently the plugin doesn't expose the full markup. If you think it should, could you file a ticket? http://dev.jquery.com/newticket (requires registration) Otherwise, the bodyHandler option may help. Jörn On Wed, Oct 29, 2008 at 3:33 PM, Toccamonium [EMAIL PROTECTED] wrote: Hi, How can I

[jQuery] Re: Tooltip creation issue

2008-10-31 Thread Jörn Zaefferer
Check out this tooltip plugin, it includes a fade-option that handles the queuing issues: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Jörn On Thu, Oct 30, 2008 at 3:13 PM, TS [EMAIL PROTECTED] wrote: Hello all, I have created som tooltip code for hyperlinks. I am having an

[jQuery] Re: [tooltip] fixing the tooltip position relative to tooltipped element's position, not mouse position on event firing

2008-10-19 Thread Jörn Zaefferer
Check out clueTip, it supports positioning relative to the element. Jörn On Sun, Oct 19, 2008 at 3:43 PM, RTW [EMAIL PROTECTED] wrote: Hi, So far, tooltip is working great. Only one problem - currently the tooltip's position is offset from the mouse position when the mouseover event fires.

[jQuery] Re: Tooltip Plugin Looking Horrendous in IE6 - How to fix?

2008-10-16 Thread Jörn Zaefferer
Could you be more specific about looks so bad? The only difference I see is the lack of opaciy in IE. Jörn On Thu, Oct 16, 2008 at 6:14 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Any ideas why the tooltips made by this plugin(http://docs.jquery.com/ Plugins/Tooltip) look so bad on my site

[jQuery] Re: Tooltip Plugin Looking Horrendous in IE6 - How to fix?

2008-10-16 Thread [EMAIL PROTECTED]
That's strange, it looks ok on my copy of IE6 here. I was testing on IEs4linux last night, perhaps that was messing up the display of the tooltips? It was putting the tooltips in white boxes with no borders and adding a scrollbar. Well it's all ok now. Sorry for the confusion. -Greg On Oct

[jQuery] Re: ToolTip Bassistance insert external information

2008-10-04 Thread Prajwala Manchikatla
You can read the xml document like this $.get(data.xml,null,function(xmlDoc){ // xmlDoc is a xml document object // you can read data by xmlDoc.document.getElementsByTagName('para') etc.. // and you can use the jquery tool tip plugin to generate tooltip },'xml') tooltip plugin url

[jQuery] Re: ToolTip Bassistance and TinyMCE

2008-09-12 Thread Jörn Zaefferer
Your selector is borked, the $-prefix doesn't make much sense. That should be #tinymce (by id) or .mceContentBody (by class). Jörn On Thu, Sep 11, 2008 at 11:51 PM, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to make the ToolTip Bassistance to work with TinyMCE:

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread TheBoyaci
Hi Miguel, try set the element style position:absolute which id is tooltip. #tooltip{ position:absolute; } On 11 Eylül, 04:18, shapper [EMAIL PROTECTED] wrote: Hello, Please check my form:http://www.27lamps.com/Beta/FileStyleValidate/FileStyleValidate.html Why does the ToolTip

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread shapper
Hi, I corrected and styles my ToolTip ... However, if you note that is still a problem with the Input of type file ... it only shows the tooltip over the styled browse button and not over the input. Do you know what I need to do to solve this? Thanks, Miguel On Sep 11, 9:03 am, TheBoyaci

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread TheBoyaci
Hi, you use FileStyle plugin so that this plugin change your file input label for=PathFile/label ++added by FileStyle plugin input class=file style=display: inline; width: 320px; alt=/ and wrapped your input file by FileStyle plugin div style=background: transparent

[jQuery] Re: ToolTip Bassistance. Not working as expected ...

2008-09-11 Thread shapper
I just changed the plugin and it worked great! Thank You Very Much! Miguel On Sep 11, 1:27 pm, TheBoyaci [EMAIL PROTECTED] wrote: Hi, you use FileStyle plugin so that this plugin change your file input label for=PathFile/label ++added by FileStyle plugin  input class=file style=display:

[jQuery] Re: [tooltip] how to add a delay to tooltip removal

2008-07-15 Thread Jörn Zaefferer
There is no easy way, no. You'd have to look at the delay-implementation and apply that to hiding, including timeout cancel on rehover. If you can provide a patch, no matter how messy, I'll look into implementing it into the plugin. Jörn On Tue, Jul 15, 2008 at 6:26 PM, Matt [EMAIL PROTECTED]

[jQuery] Re: [tooltip] how to add a delay to tooltip removal

2008-07-15 Thread Matt
Thanks Jorn, since I have to have that post-delay(damn requirements!), I'm certainly going to work on implementing it, as best I can :). I'll contact you if/when I've got something. Thanks! Matt On Jul 15, 10:18 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: There is no easy way, no. You'd have

[jQuery] Re: [tooltip]

2008-07-14 Thread Giovanni Battista Lenoci
saf ha scritto: Hello 1) How do I display tooltip at a fix position. 2) I want to display a tooltip when mouseover occures on text also when it has focus. Thanx in advance try this (untested, but it would work): html head style type=text/css #tooltipbox { border:1px solid black;

[jQuery] Re: Tooltip

2008-06-05 Thread Jörn Zaefferer
I'm unable to reproduce the issue you describe - could you try to describe the steps necessary in a different way? Thanks Jörn On Thu, Jun 5, 2008 at 3:01 PM, casavecchio [EMAIL PROTECTED] wrote: Hello, I am using tooltip 1.2. There is one strange behaviour. And since now i didn't find out

[jQuery] Re: Tooltip

2008-06-05 Thread Karl Swedberg
Hi Emmanuel, Sorry for the delay in replying. If you include the hoverIntent plugin, then you can easily have the tooltip display after a small, configurable delay About the tooltip hiding on input focus, I wasn't aware that the tooltip got the focus when it was shown. Also, the default

[jQuery] Re: Tooltip

2008-06-05 Thread casavecchio
Hallo Jörn, mmh, strange, right now i cannot reproduce it myself. I will check it tomorrow again. When i recognize that effect again, i will sent a link. But it wasn't imagination. Thanks for the fast reply. Boris On 5 Jun., 17:50, Jörn Zaefferer [EMAIL PROTECTED] wrote: I'm unable to

[jQuery] Re: Tooltip onlink inside td falls below the table

2008-06-04 Thread asle
I found the problem. It is not reading my CSS for #tooltip. Very strange. I tried to strip my CSS completely. Still it does not read the position etc. of #tooltip. So I had to hardcode the same CSS into the plugin: .css(position,absolute)..etc. Any Idea why it does not read the CSS for the

[jQuery] Re: Tooltip onlink inside td falls below the table

2008-06-04 Thread Jörn Zaefferer
It would help a lot to see a testpage. Jörn On Wed, Jun 4, 2008 at 1:16 PM, asle [EMAIL PROTECTED] wrote: I found the problem. It is not reading my CSS for #tooltip. Very strange. I tried to strip my CSS completely. Still it does not read the position etc. of #tooltip. So I had to hardcode

[jQuery] Re: Tooltip

2008-05-30 Thread Karl Swedberg
You might want to take a look at my clueTip plugin. It allows you to load the contents of the tooltip with the title attribute, the text contents of an element on the current page, or the result of an ajax request. Also, in the most recent version, if you can use a string as the first

[jQuery] Re: Tooltip

2008-05-30 Thread Pyrolupus
Have you seen or tried clueTip? http://plugins.learningjquery.com/cluetip/demo/ ~Pyro On May 30, 10:22 am, armyofda12monkeys [EMAIL PROTECTED] wrote: Hello all, I was looking at tooltip examples in Tooltip plugin and just saw all examples where it makes the tooltip based off the title

[jQuery] Re: Tooltip

2008-05-30 Thread Emmanuel Briot
On Fri, May 30, 2008 at 5:17 PM, Karl Swedberg [EMAIL PROTECTED] wrote: You might want to take a look at my clueTip plugin. It allows you to load the contents of the tooltip with the title attribute, the text contents of an element on the current page, or the result of an ajax request. Also,

[jQuery] Re: tooltip - highlighting when a formfield is reached by a tab

2008-05-20 Thread Sid
Yup, there is and it's pretty simple. With the mouseover, bind the tooltip to a 'focus()' event (HTML: onFocus). And you can remove the tooltip with the 'blur()' event (HTML: onBlur) I think that'll work. Regards

[jQuery] Re: [tooltip] explorer 6 conditional statement?

2008-05-20 Thread Jörn Zaefferer
There is are options for the positioning, top and left. Something like this should work: $(...).tooltip({ top: $.browser.ie ? 100 : -60 }); More details at http://docs.jquery.com/Plugins/Tooltip/tooltip Jörn On Tue, May 20, 2008 at 7:17 PM, olestaats [EMAIL PROTECTED] wrote: I've

[jQuery] Re: [tooltip] explorer 6 conditional statement?

2008-05-20 Thread olestaats
Thanks for this. I played around and can't find any docs to explain it specifically... This is the code I'm working with: $.tooltip = { blocked: false, defaults: { delay: 200, showURL: true, extraClass: ,

[jQuery] Re: Tooltip IE area map Patch

2008-05-19 Thread Jörn Zaefferer
I think I finally found a fix for the issue. Please give the latest revision a try: http://dev.jquery.com/view/trunk/plugins/tooltip/ Once I got a confirmation that the issue is really gone, I'll create a new release. Jörn On Mon, May 19, 2008 at 4:21 AM, ferdjuan [EMAIL PROTECTED] wrote: I

[jQuery] Re: tooltip data?

2008-05-19 Thread Karl Swedberg
Hi Chris, I just updated the clueTip plugin to allow you to display data from a javascript function (or a string). It's not in a packaged release yet, but you can grab the file from the svn here: http://jqueryjs.googlecode.com/svn/trunk/plugins/cluetip/jquery.cluetip.js So, now you can

[jQuery] Re: ToolTip Sticky

2008-05-16 Thread Karl Swedberg
On May 16, 2008, at 11:58 AM, Demerzel21 wrote: I'm trying to get the following functionality I used to get from a Dojo Tooltip v 0.4 I want to have like a mini-form on my tooltip. I would hover over my element and the tooltip would appear. Then I could mouseover the tooltip. To keep it from

[jQuery] Re: ToolTip Sticky

2008-05-16 Thread Demerzel21
That's kind of what I'm using, but the enhancement I'd really love to see is such that if you do a mouseout on the original text that had the tooltip attached to it - in your case jTip Style clueTip then that would cause the tooltip to disappear too. On May 16, 5:04 pm, Karl Swedberg [EMAIL

[jQuery] Re: [tooltip] Help creating tooltips for several objects

2008-05-08 Thread Jörn Zaefferer
Try to put var in front of your variables to avoid declaring and overwriting global variables. Jörn On Thu, May 8, 2008 at 6:05 PM, Kusanagi [EMAIL PROTECTED] wrote: Hello. I have a problem with the tooltip plugin. I have several dynamicaly created images, with different id's and

[jQuery] Re: Tooltip

2008-04-29 Thread Jörn Zaefferer
fritz schrieb: Hello Jörn, i have read, that you are considering to implement sticky to your tolltip plugin. Has or will this happen or more likely not in the near future? Hasn't happended yet. A reference implementation (eg. a dirty hack in the current codebase) would help to get things

[jQuery] Re: [Tooltip] How to implement an fadeIn and fadeout?

2008-04-22 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Hi! I use the tooltip from here: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ I use Jquery 1.2.3 and wish to know how to implement an fadeIn and fadeOut into it.[...] I've commited a patch that addes a fade-option:

[jQuery] Re: [tooltip] image map area not working on ie6

2008-04-15 Thread cyfer13
I'm still experiencing issues with the Image map; http://legacyvillage.optiemstaging.com/Directory/ I've updated my .js files, also updated my script to include the map area code. No love. Any help would be greatly appreciated. -C On Mar 26, 3:54 pm, Jörn Zaefferer [EMAIL PROTECTED]

[jQuery] Re: Tooltip with Lightbox

2008-04-09 Thread paazio
I had similar and the fix was to use different setting for the title value in tooltip plugin. On Apr 6, 8:41 pm, Macarrão [EMAIL PROTECTED] wrote: Hi! I've been using the jquery.tooltip withLightbox, but the Tooltip 'steals' the title attribute value and theLightboxcan't show it! What can I

[jQuery] Re: ToolTip Plug Crashes (bassistance)

2008-04-04 Thread Kyle Holder
OK. Not quite so perfect. At first it seemed to work fine. When I manually set the text... $(.ToolTip).tooltip({bodyHandler: function() { return Add Comment },showURL:false}); It works fine. However, when I set it as the result of a function, I get a 'nodeType'

[jQuery] Re: ToolTip Plug Crashes (bassistance)

2008-04-03 Thread Jörn Zaefferer
Kyle Holder schrieb: Hi, I have a page with about 30 instances of the tool tip object on them. These are dynamically updated divs. In order to change the text inside the tooltip, you need to re-initialize them by calling $ (#object).tooltip(). This works perfectly. However, when I do that

[jQuery] Re: ToolTip Plug Crashes (bassistance)

2008-04-03 Thread Kyle Holder
Perfect. Thank You! On Apr 3, 4:52 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Kyle Holder schrieb: Hi, I have a page with about 30 instances of the tool tip object on them. These are dynamically updated divs. In order to change the text inside the tooltip, you need to re-initialize

[jQuery] Re: tooltip in select

2008-03-26 Thread jquertil
I have had so many problems of similar sort with select's that I finally gave up and now I just use a library to generate a select box that's got only DIV tags. That way I can have multi-line items, tooltips, fading, etc... death to select input form tag :P especially I see google using similar

[jQuery] Re: [tooltip] Something left in your test page

2008-03-26 Thread Jörn Zaefferer
alexanmtz schrieb: Hi Jorn, I would like to request you to add a tooltip in your select box that you use to test bgiframe. Actually it work well, but try to put in your demo page a tooltip and a title in select box in your test page: http://jquery.bassistance.de/tooltip/demo/ Try to test

[jQuery] Re: [tooltip] image map area not working on ie6

2008-03-26 Thread Jörn Zaefferer
flobou schrieb: Thanks Karl and Jörn, I'm sad there's no solution yet with jQuery toolip but I will try clueTip. The mouse tracking was very good with tooltip so I hope to find a good combination, I'll let you know =) [...] Thanks for Karls motiviation. I found the issue and fixed it:

[jQuery] Re: [tooltip] image map area not working on ie6

2008-03-25 Thread flobou
Thanks Karl and Jörn, I'm sad there's no solution yet with jQuery toolip but I will try clueTip. The mouse tracking was very good with tooltip so I hope to find a good combination, I'll let you know =) Thanks again Flo On 20 mar, 20:19, Karl Swedberg [EMAIL PROTECTED] wrote: Not to poach a

[jQuery] Re: [tooltip] image map area not working on ie6

2008-03-25 Thread Jörn Zaefferer
flobou schrieb: Thanks Karl and Jörn, I'm sad there's no solution yet with jQuery toolip but I will try clueTip. The mouse tracking was very good with tooltip so I hope to find a good combination, I'll let you know =) Apparently I just need to try again. I wonder what piece I was

[jQuery] Re: [tooltip] image map area not working on ie6

2008-03-25 Thread Karl Swedberg
Jörn If I recall correctly, I had to force positioning by mouse (pageX/Y) rather than by invoking element when using an area element. Not sure if I had to do something else, too. flobou, I have an experimental mouse tracking option in clueTip that works most of the time. just set

[jQuery] Re: [tooltip] Looping and variable tooltip setup

2008-02-23 Thread spinnach
derek, i haven't thoroughly examined how bodyHandler works but i think something like this should work, provided that your html structure won't change: $('div[id^=tt]').tooltip({ bodyHandler: function(){ return $(this).next().html(); } }); if your html structure will change, you

[jQuery] Re: [tooltip] Looping and variable tooltip setup

2008-02-23 Thread derek
dennis, Thanks for the help, both of your examples work great. I also tried substituting in a class 'tt' in place of the individual ids and that seems to work good as well. Is there any speed advantage to this method? I'll probably end up using this method instead as it seems more elegant.

[jQuery] Re: [tooltip] Looping and variable tooltip setup

2008-02-23 Thread spinnach
derek, i'm not sure if there are any speed advantages (in both cases jquery has to loop through all divs on the page to find the ones you need - either by class or by id, so there probably is none) but by using classes your keeping your html cleaner.. as a rule, things that repeat on a

  1   2   >