razvaniacob / selectrange

Jquery Plugin that generates a range of options for a select element

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

selectrange

Jquery Plugin that generates a range of options for a select element

Usage

This component relies on jQuery.

Basic usage:

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="select-range.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $("select").selectRange({
        min: 1,
        max: 10
    });
</script>

License

selectRange.js is freely distributable under the terms of the MIT license.

--

Copyright 2014 Razvan Iacob

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Jquery Plugin that generates a range of options for a select element

License:MIT License


Languages

Language:JavaScript 100.0%