Linked Questions
28 questions linked to/from How do I make jQuery Contains case insensitive, including jQuery 1.8+?
0 votes
1 answer
909 views
how to make case insensitive jquery contains? [duplicate]
I am using following code to test two table column values. only issue is how to convert .colNameivr values to upper case before matching with itemNames. jQuery('.colNametns').each(function(i) { var ...
0 votes
1 answer
249 views
How to write case insensitive Javascript search [duplicate]
Example: I have string "Waheed" so when try to search with small letters as "waheed" the results are not coming but when I search case it is working fine.. so how can I make it not case sensitive..? ...
0 votes
0 answers
81 views
Make an array case-insensitive [duplicate]
I am trying to remove a div that contains specific words. Here's the sample jquery code: var someArray = [ 'someword', 'someword2', 'someword3' ]; for (var i = 0; i &...
152 votes
12 answers
81k views
Is there a case insensitive jQuery :contains selector?
Is there a case insensitive version of the :contains jQuery selector or should I do the work manually by looping over all elements and comparing their .text() to my string?
70 votes
4 answers
70k views
jQuery :contains() selector uppercase and lower case issue
My html looks like this <input id="txt" value=""></input> <div class="link-item">jK</div> <div class="link-item">JFOO</div> my js $('#txt').keyup(function(){ ...
9 votes
3 answers
9k views
jQuery selector for a checkbox that contains certain text in its name attribute
I'm trying to find a selector in jQuery that select all inputs that are checkboxes and their name contains a specific word like "top" or "Top". Having trouble b/c its selecting other checkboxes. Is ...
3 votes
1 answer
8k views
How to scroll to the selected row in Kendo grid using jQuery?
My question may be similar to, jQuery scroll to element and Kendo Grid scroll to selected row $("#button").click(function() { $('html, body').animate({ scrollTop: $("#...
0 votes
2 answers
3k views
jQuery: Show only content which contains search values
I want to show only divs that contains the entered search values. So if I type upload login in the Searchbox it should show only Question 1 and Question 3. Note: It should work with multiple search ...
1 vote
1 answer
3k views
Isotope.js filtering for html table
Is isotope filtering working for HTML Tables? What I want to do is filter using a search form, so my contacts list will be filtered based on the value of the search box . Here is my sample fiddle for ...
1 vote
1 answer
3k views
Where to place jQuery.expr code?
I'm looking for a solution to have a case-insensitive version of the :contains selector in jQuery. I found these two posts here on Stack Overflow: Is there a case insensitive jQuery :contains ...
1 vote
1 answer
4k views
How to group table rows and filter the groups with jQuery or JavaScript?
I am using <tbody> to group table rows. My table looks like this: <label for="kwd_search">Search:</label> <input type="text" id="kwd_search" value=""/> <br /><br /&...
0 votes
1 answer
3k views
jQuery: how to create variables for each item in array
I am creating an array with the below code. The single functions work fine so far, my only problem with the loop is how to create the variables (nameX and dataX) dynamically from each item in the ...
1 vote
4 answers
2k views
Javascript Case Sensitive filter
I'm using the script below to filter though results in a table. Only the problem is that it is case sensitive. How would I go about making it non-case sensitive? <script> $(document).ready(...
2 votes
2 answers
948 views
Data attribute search with lower case and upper case
I created searchbar with looking for names of agents that comes from laravel backend. Right now it is working that when user type first upper case letter and then lower case it search for agents. I ...
2 votes
2 answers
773 views
jQuery Character search
I want change the background color of limited character in a string I have text box and string, I want to change the background-color of the string from the text box Using Jquery eg: When I enter ...