JavaScript picker
The jSuites.picker
is a JavaScript plugin that allow users to choose one of the options provided. The plugin is responsive and brings a great user experience across different devices.
Load picker basic example
Picker example source code
<html> <script src="https://jsuites.net/v4/jsuites.js"></script> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" /> <div class='row'> <div class='column p10'> <div id='picker'></div> </div> </div> <script type='text/loader'> jSuites.picker(document.getElementById('picker'), { data: ['Option1', 'Option2', 'Option3'], value: 3, }) </script> </html>
Quick reference
Go to the Quick reference
More examples
- Basic picker
- How to style your options
- How to use a front that is not changed when changing the option
- How to trigger a function when changing the picker option
- How to integrate picker with react