Load jQuery UI In Wordpress Plugin
1 //jquery ui scripts are included in Wordpress by default
2 //Reference: http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Default_scripts_included_with_WordPress
3 wp_enqueue_script('jquery-ui-core');
4 wp_enqueue_script('jquery-ui-datepicker');
5 //jquery ui style is not built-in by default, therefore load it from google CDN
6 wp_enqueue_style('jquery-style', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css');
Comments
Sign in to leave a comment.

