Linked Questions

0 votes
1 answer
909 views

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 ...
sana's user avatar
  • 460
0 votes
1 answer
249 views

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..? ...
Mr world wide's user avatar
0 votes
0 answers
81 views

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 &...
Soner's user avatar
  • 3
152 votes
12 answers
81k views

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?
Pat's user avatar
  • 36.8k
70 votes
4 answers
70k views

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(){ ...
Nerudo's user avatar
  • 942
9 votes
3 answers
9k views

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 ...
RetroCoder's user avatar
  • 2,733
3 votes
1 answer
8k views

My question may be similar to, jQuery scroll to element and Kendo Grid scroll to selected row $("#button").click(function() { $('html, body').animate({ scrollTop: $("#...
user2771399's user avatar
0 votes
2 answers
3k views

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 ...
Sylnois's user avatar
  • 1,631
1 vote
1 answer
3k views

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 ...
a_miguel6687's user avatar
1 vote
1 answer
3k views

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 ...
matt's user avatar
  • 44.7k
1 vote
1 answer
4k views

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 /&...
Kenci's user avatar
  • 4,902
0 votes
1 answer
3k views

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 ...
user2571510's user avatar
  • 11.4k
1 vote
4 answers
2k views

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(...
user3078580's user avatar
2 votes
2 answers
948 views

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 ...
Konrad Uciechowski's user avatar
2 votes
2 answers
773 views

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 ...
user1287923's user avatar

15 30 50 per page