[jQuery] Re: ClueTip postioning

2008-10-08 Thread JeffreyKarbowski
Comparing to original - (Line 105) Original: var tOffset = parseInt(opts.topOffset, 10), lOffset = parseInt(opts.leftOffset, 10); Changed to: var tOffset = 100, lOffset = -738; (Line 302) Original: tipY = posY; Changed to: tipY = 95; (Line 305) Original: tipY = posY - opts.dropShadowSteps + t

[jQuery] Re: ClueTip postioning

2008-10-07 Thread JeffreyKarbowski
In Bold are the lines that I have changed: if (opts.local && opts.hideLocal) { $(tipAttribute + ':first').hide(); } var tOffset = 100, lOffset = -738; // vertical measurement variables var tipHeight, wHeight; tipHeight = defHeight == 'auto' ? Math.max($cluetip.outerHeig

[jQuery] Re: ClueTip postioning

2008-10-07 Thread Karl Swedberg
On Oct 7, 2008, at 11:21 PM, JeffreyKarbowski wrote: JeffreyKarbowski wrote: Could you please tell me a way to position the Cluetip relative to its parent div instead of having it offset from the invoking element? I need the Cluetip to sit in a fixed position on the page. Followup:

[jQuery] Re: ClueTip postioning

2008-10-07 Thread JeffreyKarbowski
JeffreyKarbowski wrote: > > Could you please tell me a way to position the Cluetip relative to its > parent div instead of having it offset from the invoking element? I need > the Cluetip to sit in a fixed position on the page. > Followup: After playing around with the .js, which I have neve