2014-03-19 03:44:22 +00:00
|
|
|
jQuery( function( $ ) {
|
2012-07-17 14:09:18 +00:00
|
|
|
|
|
|
|
// Frontend Chosen selects
|
2014-03-19 03:44:22 +00:00
|
|
|
$( 'select.country_select, select.state_select' ).chosen( { search_contains: true } );
|
2013-04-23 14:37:19 +00:00
|
|
|
|
2014-03-19 03:44:22 +00:00
|
|
|
$( 'body' ).bind( 'country_to_state_changed', function() {
|
|
|
|
$( 'select.state_select' ).chosen().trigger( 'chosen:updated' );
|
2012-07-17 14:09:18 +00:00
|
|
|
});
|
2013-04-23 14:37:19 +00:00
|
|
|
|
2014-01-31 02:44:17 +00:00
|
|
|
});
|