[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
Also - multiple cluetips are not working in google chrome v2.0.172.33 Only the first one (Sunday) is working

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
Hi there, I copied your html from below and your jQuery, but I can't find in the html any element with a class of nextcontainer $('.nextcontainer a.cell_link') --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 24, 2009, at 11:14 AM, kurtzilla

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
actually, the more I look at the html, the less sense I can make of it. you have DIVs and DLs nested inside As. You also have links within other links. Please make sure that the HTML is valid first and then check the clueTip stuff again. thanks, --Karl Karl Swedberg

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
sorry - i changed some names to publish to web but didn't follw thru and double check it all with the jquery code change the div class=container to div class=nextcontainer or change jquery code from $('.nextcontainer a.cell_link') to $('.container a.cell_link') below is a corrected version

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread Karl Swedberg
thanks for that, but you still need to clean up the invalid html throughout. try running it through the w3c validator to get an idea of all the problems. http://validator.w3.org/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 24, 2009, at 5:15 PM,

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
BTW - I originally thought that the class linked to by rel had to be contained within the cluetip link. Guess I found out the hard way that it is not necessary to do that. I have gotten this to work in firefox - but still cannot get chrome to work on any link but except the first. ***tried one

[jQuery] Re: cluetip issue firefox/safari local content w/link

2009-06-24 Thread kurtzilla
the code I tested with: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/ TR/xhtml11/DTD/xhtml11.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=windows-1252 / titleselect/title script

[jQuery] Re: Cluetip Issue

2009-03-12 Thread Pedram
Thanks but I want to Remove the Plugin from my Selector , lets say I have COmbo box when ever you change the Option the Cluetip fires in so when the onChnage event is active the we set the select title attribute the same as the title that was selected , and then add the cluetip to that , but the

[jQuery] Re: Cluetip Issue

2009-03-12 Thread Pedram
Dear Folk this is the actual LINK http://mahdip.com/test/ I made it for this Example , it works in firefox but it doesn't work in IE thanks On Mar 12, 8:29 am, Pedram pedram...@gmail.com wrote: Thanks but I want to Remove the Plugin from my Selector , lets say I have  COmbo box when ever you

[jQuery] Re: Cluetip Issue

2009-03-12 Thread Pedram
I just Put the COmbo box in a DIv so I changed the code $(select.Responses).change(function(){ $(this).panret('div').attr(title,$(option:selected,$ (this)).attr (title)).cluetip({splitTitle: '|',width:400}); }); and it worked does any one has better idea On Mar 12, 9:00 am, Pedram

[jQuery] Re: Cluetip Issue

2009-03-11 Thread jQuery Lover
Well, if you don't have any other events bound to your element, then simply unbind the event. For example, if it is on hover, unbind on hover. if it is on click unbind click event... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 4:14 AM, Pedram

[jQuery] Re: clueTip issue with ASP.NET GridView

2008-11-04 Thread Karl Swedberg
Hi Bob, Do you have a page I can look at to see what's going on there? thanks, --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 3, 2008, at 12:27 PM, bgibilaro wrote: All, I am new to clueTip and I am having a rather peculiar problem. I have an

[jQuery] Re: cluetip issue

2007-12-28 Thread KnoxBaby
yeah and what was the problem??? On Dec 27, 8:23 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Solved sorry was my stupid error Andrea On Dec 27, 12:30 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi , i am using teh following code $('.cfjq_cluetip').cluetip({ sticky:false,

[jQuery] Re: cluetip issue

2007-12-27 Thread [EMAIL PROTECTED]
Solved sorry was my stupid error Andrea On Dec 27, 12:30 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi , i am using teh following code $('.cfjq_cluetip').cluetip({ sticky:false, splitTitle: '|', showTitle: true }); to run the tip on different a tag using their own title

[jQuery] Re: cluetip issue(selectbox issue)?

2007-08-27 Thread Eridius
Does cluetip have issues when there is a selectbox in the tooltip? i mean the select box is completely in the tooltip but when i click on it and try to honver over any option the tooltip close. the select works fine when i give it a size but i don't want to use the select box like this,

[jQuery] Re: cluetip issue(selectbox issue)?

2007-08-27 Thread Karl Swedberg
that probably happens because you have mouseOutClose: true if you remove that option, then mousing out of the clueTip won't close it. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 27, 2007, at 9:34 AM, Eridius wrote: Does cluetip have

[jQuery] Re: cluetip issue

2007-08-26 Thread Eridius
To be more clear i am using an img as the link, and this seems to be the problem cuase when i use just text the tooltip appeared in the same place everytime. is there an issue using cluetip with images a the link? Eridius wrote: this is my cluetip code:

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Eridius
Another thing i am looking for is to be able to change the content in the tooltip with ajax while it is displaying. I tried to change the content and the content does change in the div i have added to but the tooltip does not(i guess it pulls the content from the div a displays it instead of

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Karl Swedberg
Hi eridius, Eridius wrote: this is my cluetip code: $('#trip_builder_popup').cluetip({local: true, mouseOutClose: true, sticky: true,

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Rick Faircloth
automatic depending on screen space available based on the position of the element. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, August 26, 2007 1:22 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: cluetip issue(another issue

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Karl Swedberg
Of Karl Swedberg Sent: Sunday, August 26, 2007 1:22 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: cluetip issue(another issue) Hi eridius, Eridius wrote: this is my cluetip code: $('#trip_builder_popup').cluetip({local: true

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Rick Faircloth
Alright!!! That is great! I've got to update my version of clueTip! Thanks, Karl! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, August 26, 2007 2:16 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: cluetip issue

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Rick Faircloth
? Thanks! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, August 26, 2007 2:16 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: cluetip issue(another issue) Hi Rick, yes, that's in there. and yes, it's automatic

[jQuery] Re: cluetip issue(another issue)

2007-08-26 Thread Rick Faircloth
Subject: [jQuery] Re: cluetip issue(another issue) Hey Rick, Your code isn't inside the $(document).ready() :-) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 26, 2007, at 5:03 PM, Rick Faircloth wrote: Well. can't get

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Rick Faircloth
PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, July 29, 2007 12:55 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display to the right... On Jul 29, 2007, at 12:40 AM, Rick Faircloth wrote: If you look at my demo page again: http

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Karl Swedberg
@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display to the right... On Jul 29, 2007, at 12:40 AM, Rick Faircloth wrote: If you look at my demo page again: http://www.whitestonemedia.com/ cluetip_test/cluetip-test.html you’ll notice that I put up 4

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Rick Faircloth
PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display to the right... Hi Rick, On Jul 29, 2007, at 2:39 PM, Rick Faircloth wrote: Is there a way to turn off the question mark that appear on mouse-over of a cluetip? Now

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Karl Swedberg
Hi Rick, Here is how the clueTip positioning is supposed to work: * switches from the right side of the link to the left side, if there is not enough room between the link and the right edge of the browser window * moves up until the whole clueTip is visible, if the link is too

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Rick Faircloth
the tip show up above or below the link? Thanks for the help! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Saturday, July 28, 2007 11:58 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Karl Swedberg
Hi again, After taking a closer look at your implementation, I noticed that you set the width of the clueTip to 410, even though the photo width is 600px: $('a.load-local').cluetip({local:true, arrows:true, sticky: false, dropShadow: false, width:410}); That is for sure going to mess

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Rick Faircloth
I think we hit upon the problem at the same time. (see my next message) Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, July 29, 2007 12:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Karl Swedberg
the tip show up above or below the link? Thanks for the help! Rick From: jquery-en@googlegroups.com [mailto:jquery- [EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Saturday, July 28, 2007 11:58 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Rick Faircloth
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, July 29, 2007 12:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display to the right... Hi again, After taking a closer look at your implementation, I noticed

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Rick Faircloth
, whichever happened to provide the best view of the tip. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, July 29, 2007 12:35 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Rick Faircloth
, 2007 12:35 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ClueTip Issue: I can only get the tip to display to the right... ha! you figured it out before I sent my last note. nice work! As for positioning it above or below ... I kind of like that idea. I'll see what I can do. I

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-28 Thread Karl Swedberg
On Jul 29, 2007, at 12:40 AM, Rick Faircloth wrote: If you look at my demo page again: http://www.whitestonemedia.com/ cluetip_test/cluetip-test.html you’ll notice that I put up 4 linked images with 4 cluetip images. Everything works as expected until I mouse over the images one after