Here are the options currently available for the clueTip:
width: default is 275local: default is false; set to true to use an element on the current page for the contents of the clueTip.
hideLocal: default is true. If the local option is set to true, this one determines whether local content to be shown in clueTip should be hidden at its original location.
attribute: default is 'rel'; set it to some other attribute of the link to designate that attribute as the one that refers to the clueTip's contenttitleAttribute: default is 'title'; set it to another attribute to use its text for the clueTip's titlesplitTitle: default is an empty string; set to a character such as "|" to split the title attribute of a link into the clueTip heading (the first string, before the first delimiter character) and individual clueTip body divs (subsequent strings).hoverClass: default is an empty string; set to the name of the class to add that class to the link on hoverwaitImage: default is 'wait.gif'; not implemented yetsticky: default is false; set to true if you want the clueTip to remain open when you "mouse out" of the link. This option also places a "close" link on the clueTip itself. activation: default is 'hover'; set to 'toggle' to force the user to click the element in order to activate the clueTip.closePosition: default is 'top'; set to 'bottom' to put the 'close' link at the bottom of the clueTip. Additional formatting can be applied to a#cluetip-close in the style sheet.closeText: default is 'Close'; set it to something else if you want totruncate: default is 0, which means there will be no truncation; set it to some number to truncate the clueTip's contents to n characterspngFix: default is true; fixes png transparency for the clueTip in IE<=6. change to false to disable it.hoverIntent: default is true; if jquery.hoverintent.js plugin is included in <head>, .hoverIntent() will be used instead of .hover()ajaxProcess: default is:
function(data) {data = $(data)
.not('style, meta, link, script, title');
return data;
}
This default value strips out tags from the <head> of an HTML page that is being pulled into a clueTip via "AHAH."ajaxSettings: default is {dataType: 'html'}. You can use any argument here that you would use in $.ajax().