Bastien writes:

> Instead of changing the current HTML, I'd rather go and find a
> solution where some javascript can display the tooltip.

E.g.:

-----------

$(document).ready(fntooltips);

function fntooltips() {
    $(".footnum").each(
        function () {
            $("[href='#" + this.id + "']")
                .attr("title",
                      this.parentNode.parentNode.textContent);
           }
        )
}

-------------

Tested with JQuery 1.9.1 and a recent Org.

Yours,
Christian

Reply via email to