WordPress 3.5 have the default option for color picker. It was cool and reduced my work for color picker. I add the source code to show color picker in your wordpress form of admin section.Add “wp-color-picker” Script and StyleAdd An Input boxMap “wp-color-picker” to “input box”More OptionsAdd “wp-color-picker” Script and Style <?php add_action( 'admin_enqueue_scripts', 'bsc_enqueue_color_picker' ); function bsc_enqueue_color_picker( $hooksuffix ) { /** for color picker **/ wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_script( […]... Read More »