Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
conditionize
Advanced tools
jQuery plugin for forms conditions to show/hide controls depending on its values
jQuery plugin for forms conditions to show/hide controls depending on its values.
<script src="conditionize/dist/conditionize.min.js"></script>
Link directly from unpkg
<script src="https://unpkg.com/conditionize@1/dist/conditionize.min.js"></script>
To use with a bundler like browserify or webpack
import 'conditionize';
<form class="my-form" action="#">
<h1>Conditionize</h1>
<input type="text" name="text-control" placeholder="Type 'magic'">
<div data-cond="[name=text-control] == magic">Magically show when text control contains 'magic' word.</div>
<select name="select-control">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three. Wow, you will see the new control below...</option>
</select>
<label data-cond="[name=select-control] == 3">
<input type="checkbox" name="checkbox-control">
Is checked?
<span data-cond="[name=checkbox-control] != true">Nope</span>
<span data-cond="[name=checkbox-control]">Yep</span>
</label>
<div>
<a href="https://github.com/nk-o/conditionize" data-cond="[name=select-control] == 3 && [name=checkbox-control] == true">GitHub</a>
</div>
</form>
$('.my-form').conditionize({
selector: '[data-cond]'
});
Name | Type | Default | Description |
---|---|---|---|
selector | string | [data-cond] | Condition blocks jQuery selector. |
conditionAttr | string | data-cond | Condition atribute that will be checked. |
checkDebounce | int | 150 | Debounce timeout for better performance. |
Events used the same way as Options.
Name | Description |
---|---|
onInit | Called after init end. |
onDestroy | Called after destroy. |
onCheck | Called when check function ended work (available 2 arguments [ $item, show ] ). |
customToggle | Custom toggle for conditional blocks. You can define your own function to show/hide blocks. |
Example of customToggle
function:
{
customToggle: function( $item, show ) {
if ( show ) {
$item.show();
} else {
$item.hide();
}
}
}
Name | Result | Description |
---|---|---|
destroy | - | Destroy Conditionize and set block as it was before plugin init. |
$('.my-cond-form').conditionize('destroy');
If you already have jQuery.fn.conditionize, you can rename the plugin.
jQuery.fn.newConditionize = jQuery.fn.conditionize.noConflict();
npm install
in the command line. Or if you need to update some dependencies, run npm update
npm run build
to run buildnpm run js-lint
to show eslint errorsnpm run js-lint-fix
to automatically fix some of the eslint errorsFAQs
jQuery plugin for forms conditions to show/hide controls depending on its values
The npm package conditionize receives a total of 0 weekly downloads. As such, conditionize popularity was classified as not popular.
We found that conditionize 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.