Answers for "text cursor over html"

2

html mouse over text

//When you hover over the word "hello" the text "goodbye" will appear
in a small box
<a href="./####" title = "goodbye" >hello</a>
Posted by: Guest on December-18-2020
0

how to control where the text cursor on div

function setCaret(row, col) {
    var el = document.getElementById("editable")
    var range = document.createRange()
    var sel = window.getSelection()
    
    range.setStart(el.childNodes[row - 1], col)
    range.collapse(true)
    
    sel.removeAllRanges()
    sel.addRange(range)
}
Posted by: Guest on February-10-2021

Browse Popular Code Answers by Language