I am trying to implement search functionality for a list using jQuery. I am using following line to filter matching elements
$(list).find("a:contains(" + filter + ")").parent().show();
This shows all the elements which contain "filter" text. I want to show only those elements in which words start with "filter" text.
I am thinking of using regular expression for this.
Is there any way to pass regular expression to :contains
selector? Or can this be achieved in any other way?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…