Call function from hyperlink defined in qTip content
- by user327066
Hi, I am trying to call a javascript function from a hyperlink that is part of the content in a qTip. I keep getting the error my function is not defined but it is defined within the page and can be called outside of qTip. Below is what I have so far:
function addTooltip() {
$("#mycontent").qtip({
content: 'mylink'
});
}
function tester() { alert("hello world"); }
If I put the alert within the onClick attribute, I at least get the alert to work. Is there some special way of calling a function from within qTip? Any help is appreciated. Thanks.