the error is the last comma in literal object:
the correct is
6. effect: 'fade'
7.});
On 6 fev, 20:35, vengiss 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 to show on a
> to
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 ar
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
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:
http://jquery-ui.googlecode.com/svn/branches/dev/
On Oct 12, 8:57 pm, Jörn Zaefferer
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?
> Afaik thats the best way
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.
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 (English)
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, tvanfosson wrote:
>
> I've made some minor modifications to the Tooltip plugin to have it
> integrate with jQ
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 t
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, 2
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, apuredol wrote:
>
> Hi, I am using and modifying the sample demo page and have a error on
> IE:
I tried, but din'nt funcyion. All new for me. Can you tell me.
On 17 jul, 21:44, Charlie 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 when mouse comes ove
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 (h
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 the
*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
Probably not documented - but supposed to be part of the public API,
otherwise the demo wouldn't cover it.
Jörn
On Thu, May 28, 2009 at 4:58 PM, fredriley wrote:
>
> Ah, that makes sense. Thanks, Jörn. I suppose I'd have stumbled across
> that solution eventually, but I really wanted to know *w
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 n
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();
aler
Wow .. how easy, works, thank you.
Wow .. how easy, works, thank you.
Try this:
1. $("[title]:not(.fast)")...
2. $("[title].fast")
Jörn
On Tue, May 5, 2009 at 11:30 AM, nomad wrote:
>
> Newbies question:
> I need different definitions of tooltip on one page:
>
> 1/ Replace the default tooltip of all title elements
>
> $('*[title]').tooltip({
> delay:
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 wrote:
>
> The tooltip plugin is slic
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
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
wrote:
>
> Hi, im using your jquery tooltip although I have a question about
> doing something bespoke
>
> I call the code to my page via
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 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 against the
> window
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 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 against the
> window
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, fo
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 styliz
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
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 wrote:
>
> I am trying to change the tooltip message based on user interaction,
> but it doesn't lo
Perfect, thanks!
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 wrote:
>
> Having issues with the tooltip plugin -
> http://bassistance.de/jquery-plugins/jquery-plugin-
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 or
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 wrote:
>
> Upgraded to jquery 1.3.1 Tooltips doesn't show up
>
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 wrote:
> 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 s
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 wrote:
> Also, it looks like you're l
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 w
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 wrote:
>
> Thanks,
>
> I replaced jquery.tooltip.js and jquery.tooltip.css with the new
> versions and the tooltips stopped working alltogether.
>
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.ta
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 wrote:
>
> Hello,
>
> I have a th
Preload all images used in tooltip with javascript:
Detailed article:
http://articles.techrepublic.com.com/5100-10878_11-5214317.html
Google:
http://www.google.com/search?rlz=1C1GGLD_enUZ291UZ308&sourceid=chrome&ie=UTF-8&q=javascript+image+preload
On Thu, Jan 8, 2009 at 4:13 PM, kannibal wrote:
The site isn't reachable...
Jörn
On Sat, Dec 27, 2008 at 8:36 PM, kenitech 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:
> http://bassist
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,
>>
>> Ju
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
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
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 t
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.
>
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
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)
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 a
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:
> http://www.randomjabber.c
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"
},
You need to encode the value of the "title" attribute with htmlentities():
-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 however are ending the "title" attribute and t
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
Maybe this: text
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.
>
> S
>
> This would make it much easier to use the thing on a heavily async
> page that has alot of messages that come from some ar
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:
>
>
>
> the tooltip will just show "Hello - this image is called "
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
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 c
Thanks Jorn, clueTip is flexible indeed.
I'd like to mod my tooltip though, as I've put in a bit of effort in
getting things right.
Any ideas on how I can get the correct co-ordinates? Using
current.offsetLeft for example just dumps the tooltip at same spot,
not matter where the tooltipped eleme
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
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 1
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 m
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 http://d
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:
> http://tin
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
>
> File
>
> ++added by FileStyle plugin
>
> and wrapped your input file by FileStyle
Hi,
you use FileStyle plugin so that this plugin change your file input
File
++added by FileStyle plugin
and wrapped your input file by FileStyle plugin
So you will try this code
$("input[type=file]").filestyle({
image: "FileUpload_Button.jpg",
imageheight: 15
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 <[EM
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 To
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 ha
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]>
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):
#tooltipbox {
border:1px solid black;
background-color:grey;
color:
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
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 po
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 fi
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 hard
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
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. Als
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 arg
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
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: "",
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'
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
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 do
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:
>
>
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 PR
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
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
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
[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:
http://dev.jquery.com/changeset/52
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]> wro
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 c
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
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-ini
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
t
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:
http:
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 this
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
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 tracki
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 missing...
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
1 - 100 of 115 matches
Mail list logo