Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use a wildcard to get the id of all the elements whose id begin with "jander". I tried $('#jander*'), $('#jander%') but it doesn't work..

I know I can use classes of the elements to solve it, but it is also possible using wildcards??

<script type="text/javascript">

  var prueba = [];

  $('#jander').each(function () {
    prueba.push($(this).attr('id'));
  });

  alert(prueba);


});

</script>

<div id="jander1"></div>
<div id="jander2"></div>
share|improve this question
1  
This is a question about jQuery (or more exactly the Sizzle engine). – Peter Forss Mar 21 '11 at 10:37
1  
Just a note: It would be much faster to do it with classes as jQuery or Sizzle can make use of browser functions (should not make much of a difference for modern browsers though). – Felix Kling Mar 21 '11 at 10:47
2  
possible duplicate of JQuery selector regular expressions – Robert MacLean Aug 31 '11 at 9:39
Also, an important thing to note is that $("[id*=jander]") would select all elements with an ID containing the string jander. – Gabriel Ryan Nahmias Jul 8 '12 at 11:03

5 Answers

up vote 241 down vote accepted

To get all the elements starting with "jander" you should use:

$("[id^=jander]")

To get those that end with "jander"

$("[id$=jander]")

See also the JQuery documentation

share|improve this answer
6  
The docs give this example: $('input[name^="news"]').val('news here!') – Brenden Oct 17 '11 at 9:55
1  
The code works as intended. There is no need to double quote, it just increases the chances of missing a closing quote and makes it less readable. – nico Jul 8 '12 at 17:49
@nico Interestingly enough, docs say it works with attributes and id is a technically a property, but I guess with the the more recent releases of jquery (i.e. 1.9) and how the latest changes to attributes and properties are hanlded, the line is slightly blurred with respect to the two and so your able to use the attribute selectors for (at least some) properties. – johntrepreneur May 10 at 21:14
@johntrepreneur: good point, I did not notice that! – nico May 11 at 6:26

Try the jQuery starts-with selector, '^=', eg

[id^="jander"]

I have to ask though, why don't you want to do this using classes?

share|improve this answer
1  
To add context, I'm looking for the same solution because I'm using Django, whose ModelForm class dictates IDs based on models, and doesn't seem to allow for grouping like this; i.e. the HTML is out of my control. – Christian Mann Jun 12 '12 at 16:07

Since the title suggests wildcard you could also use this:

<div id="jander1"></div>
<div id="jander2"></div>

<script>
$(document).ready(function(){
    console.log($('[id*=ander]'));
});
</script>

This will select the given string anywhere in the id

share|improve this answer

for classes you can use 'div[.^="jander"]' ;)

share|improve this answer
I could not get this to work, get a message about invalid syntax. – stian Feb 28 at 8:59

To "get the id" from the wildcard match:

<div id="pick_1">moo1</div>
<div id="pick_2">moo2</div>
<div id="pick_3">moo3</div>

<script>
$('[id^=pick_]').click(
    function(event) {

        // Do something with the id here: 
        var picked = event.target.id;
        alert('Picked: '+ picked.slice(5));

    }
);
</script>
share|improve this answer

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.