Hey I am adding an onclick event to track clicks on certain videos, the 3rd party tool we are using is webtrends.
I am adding the onclick event and it works fine. The thing to note is the url in the link makes the user browse to a different url.
When I track the onclick event in httpfox I see the error NS_BINDING_ABORTED.
My jquery
$j(document).ready(function () {
$j('a.wt_video').click(function (e) {
var title = ($j(this).attr("title"));
if (title.length != 0) {
handleDynamicVideoWebTrendsClick(title);
}
});
});
Any ideas what I can add to prevent this error ?