9 | 10 | 11 |
12 |13 | 14 | 15 |
16 |├── LICENSE.txt ├── README.md ├── demo.html └── nativeColorPicker.js /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 Denis Ciccale (@tdecs) 2 | 3 | Permission is hereby granted, free of charge, to any 4 | person obtaining a copy of this software and associated 5 | documentation files (the "Software"), to deal in the 6 | Software without restriction, including without limitation 7 | the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the 9 | Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice 13 | shall be included in all copies or substantial portions of 14 | the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 17 | KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 18 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 19 | PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 20 | OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 21 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 22 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 23 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nativeColorPicker 2 | A Native Color Picker Polyfill for the HTML5's "color" input type on *Internet Explorer* 3 | 4 | ## Browser support 5 | IE6+ 6 | 7 | ## Demo 8 | ### See [demo.html](https://github.com/dciccale/nativeColorPicker/blob/master/demo.html) - [online](http://dciccale.github.com/nativeColorPicker) 9 | 10 | ## Usage 11 | (just showing the minimum code needed) 12 | ```html 13 | 14 | 15 | 16 | 17 | 18 | 22 | ``` 23 | 24 | ### How? 25 | See ChooseColorDlg method in MSDN 26 | 27 | ## Screenshots 28 | 29 | ### Internet Explorer 30 |  31 | 32 | ### Google Chrome (just using HTML5 `` no js here) 33 |  34 | 35 | ## License 36 | See [LICENSE.txt](https://raw.github.com/dciccale/nativeColorPicker/master/LICENSE.txt) 37 | -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- 1 | 2 |
9 | 10 | 11 |
12 |13 | 14 | 15 |
16 |