[jQuery] Using cluetip in local mode; how to wait until element has content?

2008-08-27 Thread sprak
Greetings; here is what I am trying to accomplish. On my page, I have a hidden div; when I mouse over a link elsewhere on the page, I want to populate that hidden div with other data from the page to build the tip to display. Once that div is updated, then I want to cluetip to do its magic and d

[jQuery] jdMenu 1.4.1 not accepting settings?

2008-05-05 Thread sprak
Have setup jdMenu 1.4.1 successfully but am having one minor issue. When I try to override the disableLinks setting, it doesn't seem to take. Here is the snippet of code to create my menus: $(document).ready( function() { $('ul.jdMenu').jdMenu({disableLinks: false}); } ); The snippet is placed n

[jQuery] Re: Cluetip showing content below fold

2008-05-02 Thread sprak
.englishrules.comwww.learningjquery.com > > On May 2, 2008, at 9:12 AM, sprak wrote: > > > > > Dimensions is definitely being included. > > > jquery: 1.2.3, minified distribution > > dimensions: 1.2, minified distribution > > cluetip: 0.9.6 > >

[jQuery] Re: Cluetip showing content below fold

2008-05-02 Thread sprak
Dimensions is definitely being included. jquery: 1.2.3, minified distribution dimensions: 1.2, minified distribution cluetip: 0.9.6 Tried turning the other libraries off, but that had no effect. I'll see what I can do about hosting the page so it is publically visible. - Luis On May 1, 1:5

[jQuery] Re: Cluetip showing content below fold

2008-05-01 Thread sprak
That's already in place on the page; here is the exact doctype we are using: http://www.w3.org/1999/xhtml"; xmlns:v="urn:schemas- microsoft-com:vml" xml:lang="en" lang="en" dir="ltr"> Here are a few other details that might be of use; the script $(document).ready(function() { $('td.sricon img'

[jQuery] Cluetip showing content below fold

2008-04-30 Thread sprak
Greetings; I am using Cluetip to fetch content via AJAX. I have tried setting the position option to bottomTop, mouse, and auto. The content fetches fine, and the tooltip displays. However, if the tip opens close to the bottom of the browser window (FF2 and IE7), the tip is not shifted up to th

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-05 Thread sprak
On Jul 3, 12:31 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > wow... keep us in the loop if u find a way out. The developer who wrote the JQuery portion found the answer; apparently, the "toggle" attribute the JQuery code was applying to elements was conflicting with something in Prototype

[jQuery] Re: Syntax for selecting a form element named 'foo[0]'?

2007-07-05 Thread sprak
Thanks to you both; I'm all set. Cheers. - luis On Jul 3, 3:28 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > On 7/3/07, sprak <[EMAIL PROTECTED]> wrote: > > > > > What magic am I missing to be able to grab the value? > > $('[EMAIL P

[jQuery] Syntax for selecting a form element named 'foo[0]'?

2007-07-03 Thread sprak
Greetings; I have a form on my page that contains two select fields. They are setup like this: hello world foo bar I've tried various permutations to be able to grab the values from the two selects with no success. Here are some of the statements I have tri

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-03 Thread sprak
Hmm... after further debugging it appears that the issue is with Prototype extending the Array prototype. Line 1127 in jquery-latest.js reads: tmp.push( a ); The push is failing because the array tmp is overloaded with Prototype's functions, etc. Can't see any way around this at the moment

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-03 Thread sprak
IL PROTECTED]> wrote: > > > > > In the main js, once u have said $jc = jquery.noConfilct(), you should > > start using $jc everywhere instead of $. That is the actual purpose of > > noConflict. > > > -GTG > > > On 7/2/07, sprak <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-02 Thread sprak
> > In the main js, once u have said $jc = jquery.noConfilct(), you should > > start using $jc everywhere instead of $. That is the actual purpose of > > noConflict. > > > -GTG > > > On 7/2/07, sprak <[EMAIL PROTECTED]> wrote: > > > > Hav

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-02 Thread sprak
]> wrote: > In the main js, once u have said $jc = jquery.noConfilct(), you should start > using $jc everywhere instead of $. That is the actual purpose of noConflict. > > -GTG > > On 7/2/07, sprak <[EMAIL PROTECTED]> wrote: > > > > > Haven't had any s

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-02 Thread sprak
d jQuery seems to add the appropriate states, attributes, handlers on the navigation elements. Only the current menu item is open, and the rest are closed. Clicking on a closed menu item causes the jQuery code to be executed. However, something deep in the bowels does not return the same object

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-02 Thread sprak
e best :-) > > but, did u try adding prototype.js above jquery.js > > -GTG > > On 6/29/07, sprak <[EMAIL PROTECTED]> wrote: > > > > > Greetings; I am having a bit of trouble getting JQuery 1.1.2 and > > Prototype 1.5.0 to play > > nice with e

[jQuery] Need help with JQuery + Prototype integration

2007-06-29 Thread sprak
Greetings; I am having a bit of trouble getting JQuery 1.1.2 and Prototype 1.5.0 to play nice with each other. Here is my page (abbreviated) and script with JQuery alone. HTML: ... jQuery.noConflict(); ... Solutions Your Needs