I'm working with a the JQuery tipsy plugin and I can get it to work fine on my normal php page but when I run data from XML thru another javascript it's not loading or working properly... I've tried every imaginable change/variable and I'm stuck.
All my jquery & jquery.tipsy scripts are linked correctly because it works outside of this JS.
$(function() {
$('.instructions').tipsy({gravity: 's'});
});
Then when I call it inside the other JS it won't show at all:
return "<table cellpadding='8' cellspacing='0'><tr>" +
"<tr>" +
"<td class='mn'>" + vs.manualName + "</td>" +
"<td><a class='instructions' href='#' title='" + vs.manInstr + "'>Instructions</a></td>" +
"<td class='sku'>" + vs.skuNum "</td>" +
"</tr></table>"
};
Do I have to write it out in the JS for the tipsy to see it?