mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-13 19:56:27 +09:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
jQuery(document).ready(function() {
|
|
|
|
jQuery('.um_single_user_action').each(function(){
|
|
|
|
jQuery(this).change(function(){
|
|
|
|
val = jQuery(this).val();
|
|
|
|
if ( val != '' ){
|
|
var href= jQuery(this).parents('tr').find('a.button').attr('href');
|
|
var new_href = href + '&um_single_user_action=' + val;
|
|
jQuery(this).parents('tr').find('a.button').attr('href',new_href);
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}); |