CFTOOLTIP problem
I am trying to use a CFTOOLTIP and what comes up in the tooltip is not the info that I am rolling over. The tooltip displays info just not the right info. Does anyone see anything wrong with this code?
CODE:
<CFSET endcalendar = DateAdd("d", 30, Now())>
<CFOUTPUT query="getcalendar" >
<CFIF #event_date# IS NOT "">
<cfif DateCompare(#event_date#, Now()) IS +1 AND DateCompare(#event_date#, #endcalendar# ) is -1>
<cftooltip autoDismissDelay="10000" hideDelay="250" preventOverlap="true" sourceForTooltip="tooltipcontent.cfm?proj_key=#getcalendar.proj_key#&ID=#getcalendar.ID#">
<li><a href="calendar/">#getcalendar.title#</a></li></cftooltip>
</CFIF>
</cfif>
</CFOUTPUT>
