Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<span id="myId" class="myClass">Sample text</span>

I would like to get the id or class of a particular string in an html page by using text value, in this case "Sample text". Is there a way to do it?

share|improve this question
What is a wrapper? Are you searching for the parent element in DOM? – binfalse Jun 19 '11 at 17:19

1 Answer

Using jQuery, it's very simple:

var searchText = 'Sample text',
    $element = $('span:contains(' + searchText ')'),
    id = $element.attr('id'),
    className = $element.attr('class');

It's not so concise with strictly vanilla JS.

var spans = document.getElementsByTagName('span'),
    element,
    text,
    re = /Sample Text/,
    // IE doesn't support textContent, FF doesn't support innerText
    prop = document.body.innerText ? 'innerText' : 'textContent'; 

for (var i=0; i<spans.length; i++)
{
    if (re.test(spans[i][prop]))
    {
        span = spans[i];
        break;
    }
}

var id, className;
if (span)
{
    id = span.id;
    className = span.className;
}
share|improve this answer
great answer, however, I was hoping for the one who would spent some extra time on a non-jQuery answer. Why? Because it is possible. – Caspar Kleijne Jun 19 '11 at 17:22
Should be class not className – locrizak Jun 19 '11 at 17:22
@Caspar already added. – Matt Ball Jun 19 '11 at 17:24
@locrizak you're right, thanks for the correction. – Matt Ball Jun 19 '11 at 17:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.