WordPress-Remote-Installer/javascripts/installer.js
Luke Stevenson 0ba92500de Added JS
2014-04-17 16:07:38 +10:00

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();
});
});