2014-01-31 02:44:17 +00:00
|
|
|
jQuery(function($) {
|
2012-07-17 14:09:18 +00:00
|
|
|
|
|
|
|
// Frontend Chosen selects
|
2013-08-13 11:38:26 +00:00
|
|
|
$("select.country_select, select.state_select").chosen( { search_contains: true } );
|
2013-04-23 14:37:19 +00:00
|
|
|
|
2012-07-17 14:09:18 +00:00
|
|
|
$('body').bind('country_to_state_changed', function(){
|
2013-08-02 15:54:28 +00:00
|
|
|
$("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
|
|
|
});
|