|
|
1번째 줄: |
1번째 줄: |
| document.addEventListener("DOMContentLoaded", function() {
| | |
| var customRefs = document.querySelectorAll(".custom-ref");
| |
| customRefs.forEach(function(ref) {
| |
| var refName = ref.getAttribute("id").replace("custom-ref-", "");
| |
| var actualRef = document.querySelector("ref[name='" + refName + "']");
| |
| if (actualRef) {
| |
| ref.setAttribute("data-tooltip", actualRef.innerHTML);
| |
| ref.addEventListener("click", function() {
| |
| actualRef.scrollIntoView();
| |
| });
| |
| }
| |
| });
| |
| });
| |