Submit Form dropdown with jQuery
问题 I am using a dropdown plugin called dropkick, which replaces select menus with better looking, custom dropdowns. I want to display my list of WordPress categories in this dropdown. Here is the PHP code that generates the dropdown: <form action="<?php bloginfo('url'); ?>/" method="get" class="pretty"> <?php $select = wp_dropdown_categories('show_option_none=Select category&show_count=1&orderby=name&echo=0'); echo $select; ?> </form> The JavaScript code to turn this into a "pretty dropdown" is