Karl, I'll want to suggest a little change in your clueTip plugin. Using this code:
<A class="cluetip_Help" id="http://localhost/local/cluetip/demo/ajax4.htm" title="Testing new clueTip Plugin"> Test </A> will display the hint for that link. This occurs because IE "reads" title argument and displays that hint(native function). Using this code resolve it: <A class="cluetip_Help" id="http://localhost/local/cluetip/demo/ajax4.htm" title_clueTip="Testing new clueTip Plugin"> Test </A> and changing in jquery.cluetip.js: // set up default options var defaults = { ... titleAttribute: 'title_clueTip', Cheers 2007/7/20, Web Specialist <[EMAIL PROTECTED]>:
Karl, Wonderful! Cheers 2007/7/16, Karl Swedberg <[EMAIL PROTECTED]>: > > Hi again, > > > Just wanted to let you know that I did a bunch of work on the clueTip > plugin this weekend and made some progress in a few areas. > > > A couple people requested that the clueTips look more like Cody > Lindley's jTips. Your wish is my command: > http://test.learningjquery.com/clue/demo/alt-demo.html > > > Here is a run-down of what I've modified: > > > - waitImage feature/option is now implemented > - added "arrows" option that sets background-position-y to line up an > arrow background image with the hovered element. > - the clueTip heading (<h3>) now comes before <div id="cluetip-inner">, > not first child of it. Makes it much easier to apply sane CSS. > - fixed a positioning glitch when using the truncate option > - added alternate theme based on Cody Lindley's jTip and demo files to > show it (alt-demo...) > - changed $(document).width() to the more appropriate $(window).width() > for positioning clueTip x coordinate > - <div id="cluetip"> now gets class="clue-left" if positioned to the > left of the hovered element; gets class="clue-right" if positioned to the > right. Useful for styling the clueTip differently based on where it displays > > > > I haven't committed any of this to SVN yet because I'm hoping to work > out the IE6 drop shadow/CSS issues first. But everything is up on my test > server, so if you want to poke around, feel free: > http://test.learningjquery.com/clue/ > > > > --Karl > _________________ > Karl Swedberg > www.englishrules.com > www.learningjquery.com > > > > > >