emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] tooltips


From: Christian Moe
Subject: Re: [O] tooltips
Date: Tue, 14 Jan 2014 18:46:12 +0100
User-agent: mu4e 0.9.9.5-dev6; emacs 24.3.1

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

[Prev in Thread] Current Thread [Next in Thread]