
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A modern and customizable jQuery select plugin. Styled with Tailwind CSS, featuring search functionality and multiple selection support.
Current Version: 1.0.3
Check out the live demo here: https://ismailocal.github.io/io-select/examples/index.html
Install via npm:
npm install io-select
HTML:
<!-- Basic Usage -->
<select id="basicSelect">
<option value=""></option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<!-- Multiple Selection -->
<select id="multiSelect" multiple>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
JavaScript:
import 'io-select';
import $ from 'jquery';
// Basic usage
$('#basicSelect').ioSelect();
// With custom options
$('#multiSelect').ioSelect({
placeholder: 'Make a selection',
searchPlaceholder: 'Search...',
noResultsText: 'No results found',
searchable: true
});
| Setting | Type | Default | Description |
|---|---|---|---|
| placeholder | string | 'Make a selection' | Text to display when no selection is made |
| searchPlaceholder | string | 'Search...' | Placeholder text for the search input |
| noResultsText | string | 'No results found' | Text to display when no search results are found |
| searchable | boolean | true | Enable/disable search functionality |
Reverts the select element to its original state:
$('#mySelect').ioSelect('destroy');
Enter or Space: Open/close dropdownEscape: Close dropdownTab: Navigate through elementsIO Select is built with accessibility in mind:
npm installnpm run devnpm run buildMIT
FAQs
A modern and customizable select plugin for jQuery
We found that io-select demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.