Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get all elements with an id starting with some value. Below is my jquery code . I am trying to use a javascript variable when searching for items. But it does not work. What Am I missing below? So the id 'value' am searching is the value of the clicked element

$(document).ready(function() {
    $('input[name$="_chkmulti"]').click(function(){
        var value = $(this).val();
        $("td[id^= + value +]").each(function(){
            alert("yes");
        });


    });
});
share|improve this question

2 Answers

up vote 29 down vote accepted

try:

$("td[id^=" + value + "]")
share|improve this answer
Thanks a lot. That works – DG3 Mar 24 '11 at 2:02

Here you go:

$('td[id^="' + value +'"]')

so if the value is for instance 'foo', then the selector will be 'td[id^="foo"]'.

Note that the quotes are mandatory: [id^="...."].

Source: http://api.jquery.com/attribute-starts-with-selector/

share|improve this answer
Thanks. This works as well – DG3 Mar 24 '11 at 2:02

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.