javascript - How to fix the error "Selection.addRange()"? -


this question has answer here:

i need fix error :

the behavior selection.addrange() merges existing range , specified range deprecated , removed in m58, around april 2017. see https://www.chromestatus.com/features/6680566019653632 more details.

i can't edit, or destroy element of website.

from this github issue, have call removeallranges() before adding range selection:

selection = window.getselection();    // save selection. range = document.createrange(); range.selectnodecontents(elem); selection.removeallranges();          // remove ranges selection. selection.addrange(range);            // add new range. 

Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -