I am using bootstrap selectpicker, there for livesearch
$searchBase.not(':ibegins("search keyword")');
is being used. What exactly ibegins do in selector and how it searches inside elements?
I am using bootstrap selectpicker, there for livesearch
$searchBase.not(':ibegins("search keyword")');
is being used. What exactly ibegins do in selector and how it searches inside elements?
It looks like ibegins is a case-insensitive selector. It transforms the search term and the search text to all uppercase and then performs the search. You can see the code for that here at line 202.