
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
jquery.lookingfor
Advanced tools
Fast search as you type jQuery plugin.
It's very small (minified — 2.5kb, gzipped — 1.2kb), very fast and supports old browsers (IE6+).
jquery.lookingfor plugin searches text in list items (<li>
) and hides unmatched items.
It works not only for <li>
s, but for any HTML element on a page.
Any input field (input, textarea
) can be transformed to search filter with jquery.lookingfor.
Download latest release. Use minified or development version.
Or use bower for install:
bower install jquery.lookingfor --save
Include jQuery and jquery.lookingfor on your page:
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="jquery.lookingfor.js"></script>
Prepare list of items for following search and an input field (optional):
<input type="search" name="query" />
<ul id="numerals">
<li>First</li>
<li>Second</li>
<li>Third</li>
...
</ul>
Call lookingfor()
method with necessary options:
jQuery(function($) {
$('#numerals').lookingfor({
input: $('input[name="query"]'),
items: 'li'
});
});
All options are optional.
'li'
;true
to highlight matched text, default — false
;#RRGGBB
background color for matched text, default – #FFDE00
;FAQs
Fast search as you type jQuery-plugin
The npm package jquery.lookingfor receives a total of 1 weekly downloads. As such, jquery.lookingfor popularity was classified as not popular.
We found that jquery.lookingfor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.