mirror of
https://gh.wpcy.net/https://github.com/lucanos/WordPress-Remote-Installer.git
synced 2026-05-06 14:07:22 +08:00
13 lines
No EOL
274 B
JavaScript
13 lines
No EOL
274 B
JavaScript
jQuery(document).ready(function($){
|
|
|
|
$('input.confirm')
|
|
.on('click',function(e){
|
|
var $t = $(this) ,
|
|
msg = 'Are you sure?';
|
|
if( $t.data( 'msg' ) )
|
|
msg = $t.data( 'msg' );
|
|
if( !confirm( msg ) )
|
|
e.preventDefault();
|
|
});
|
|
|
|
}); |