mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-20 15:13:55 +09:00
Update scripts:
jQuery.fn.change() event shorthand is deprecated jQuery.fn.click() event shorthand is deprecated jQuery.fn.focus() event shorthand is deprecated jQuery.fn.keypress() event shorthand is deprecated jQuery.fn.removeAttr no longer sets boolean properties: disabled jQuery.fn.submit() event shorthand is deprecated jQuery.isArray is deprecated; use Array.isArray
This commit is contained in:
@@ -128,7 +128,7 @@ jQuery(document).ready(function() {
|
||||
/**
|
||||
Ajax link
|
||||
**/
|
||||
jQuery('.um-admin-ajaxlink').click(function(e){
|
||||
jQuery('.um-admin-ajaxlink').on('click', function(e){
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
@@ -229,7 +229,7 @@ jQuery(document).ready(function() {
|
||||
Conditional fields for
|
||||
Radio Group
|
||||
**/
|
||||
jQuery('.um-conditional-radio-group input[type=radio]').click(function(){
|
||||
jQuery('.um-conditional-radio-group input[type=radio]').on('click', function(){
|
||||
var holder = jQuery('.um-conditional-radio-group');
|
||||
|
||||
var val = jQuery(this).val();
|
||||
|
||||
Reference in New Issue
Block a user