Event JavaScript DHTML



title Property

var count = 0
function setToolTip(elem) {
    elem.title = "You have previously rolled atop this paragraph " + count + " time(s)."
}
function incrementCount(elem) {
    count++;
    setToolTip(elem);
}



title Property Lab





Roll the mouse over this paragraph a few times.

Then pause it to view the tooltip.