mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
jQuery(document).ready(function() {
|
|
|
|
|
|
jQuery(document).on('input change', '.um-field input[type=text]', function(){
|
|
if( um_field_do_init ){
|
|
um_field_init();
|
|
}
|
|
});
|
|
|
|
jQuery(document).on('change', '.um-field select, .um-field input[type=radio], .um-field input[type=checkbox]', function(){
|
|
if( um_field_do_init ){
|
|
um_field_init();
|
|
}
|
|
|
|
});
|
|
|
|
um_field_init();
|
|
um_field_do_init = true;
|
|
|
|
|
|
});
|