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

Reply via email to