On 8 sep, 13:18, Ca-Phun Ung <[EMAIL PROTECTED]> wrote:
> Olivier wrote:
> > How to find the elements with the id beginning by "myID_" and
> > terminated with any number
> > like "myID_25789".
>
> Try this:
>
> $('*[id^="myID_"]').filter(function(){
> return (/\_[0-9]+$/).test($(this).attr('id'));
>
> });
Thak you all for these all good solutions
- [jQuery] Finding elements with some ID Olivier
- [jQuery] Re: Finding elements with some ID MorningZ
- [jQuery] Re: Finding elements with some ID Ca-Phun Ung
- [jQuery] Re: Finding elements with some ID Olivier
- [jQuery] Re: Finding elements with some ID [EMAIL PROTECTED]

