I am using cluetip to show a tooltip when a user hovers over a link in my aspx page. I want this cluetip to show content from the database. I don't know how to do it.
My code:
$(document).ready(function () {$('a.title').cluetip
({ splitTitle: '|' });
});
Aspx code:
<a class="title" href="#" title="This is the title|Work Experience">Previous Exp</a>
I would want to get the data from the database in the content of the cluetip.Any help would be much appreciated.