laktek / really-simple-color-picker

Simple Color Picker written in jQuery.
http://laktek.com/2008/10/27/really-simple-color-picker-in-jquery
MIT License
179 stars 65 forks source link

Little mistake in explanation: call for function #32

Open Jan-Paul-Kleijn opened 8 years ago

Jan-Paul-Kleijn commented 8 years ago

In your explanation it says:

<script language="javascript"> jQuery(document).ready(function($) { $('#color1').colorPicker(); } </script>

But I guess you forgot the last closing parenthesis after the curly braces. So It needs to be:

<script language="javascript"> jQuery(document).ready(function($) { $('#color1').colorPicker(); } ) </script>

Hope it helps, thanks for the tool!