[jQuery] complex selector question

[jQuery] complex selector question


Hi there i want to get all select elements on a page with name=test
[1],name=test[2]...
is there a way to specify a placeholder in the selector?
i think about
$('select[name=id[*]]').each(function(){
alert($(this).html())
});
is there any possibility for that?
thanks for your replies