I have a tooltip script I grabbed from:
http://www.dynamicdrive.com/dynamicindex5/fixedtooltip.htm
Normally used kind of like this:
<script src="http://thescript.com/tooltip.js"></script>
<a onMouseover="fixedtooltip('I am html harharhar', this, event, '150px')" onMouseout="delayhidetip()">JavaScript Kit</a>
BUT.. I'm using Smarty to parse templates. I am trying to parse my tooltip "content" as an include file.
<script src="http://thescript.com/tooltip.js"></script>
<a onMouseover="fixedtooltip('{include file="popup.html" all=$response['item1'] id=$response['id']}', this, event, '150px')" onMouseout="delayhidetip()">JavaScript Kit</a>
Unfortinatly, I can not find a way to do this without breaking the javascript. Thoughts?