get the span tag name of selected text javascript

982 views Asked by At

How to get the span name of selected text:

 <Span class='class1'> text2 text3 text4 text5 </span> text6

when user select text4 then I want to get Span=Class1

Any answer can help ( in Jquery or Rangy or ...)

3

There are 3 answers

0
Amit On
$('span').on('click', function(){
var classes = $(this).attr('class');
console.log(classes)   //if there are more than one class do classes.split(' ')
})

Extremely unedited fiddle https://jsfiddle.net/tvp0q761/

0
Liglo App On

This is a function which may help:

function getSelectionParentElement() {
    var parentEl = null, sel;
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            parentEl = sel.getRangeAt(0).commonAncestorContainer;
            if (parentEl.nodeType != 1) {
                parentEl = parentEl.parentNode;
            }
        }
    } else if ( (sel = document.selection) && sel.type != "Control") {
        parentEl = sel.createRange().parentElement();
    }
    return parentEl;
}

It was taken from here Get parent element of a selected text, Author: Tim Down

2
Andy On

Here's a vanilla JS way of doing it. It assumes you'll have more than one span, hence querySelectorAll rather than querySelector.

HTML

<span class="class1"><p>text2</p><p>text3</p><p>text4</p></span>
<span class="class2"><p>text2</p><p>text3</p><p>text4</p></span>
<span class="class3"><p>text2</p><p>text3</p><p>text4</p></span>

JS

var spans = [].slice.call(document.querySelectorAll('span')).forEach(function (el) {
    el.onclick = showParentInfo;
});

function showParentInfo() {
    console.log(this.nodeName + '=' + this.className)   
}

DEMO