PluginProbe ʕ •ᴥ•ʔ
Advanced 301 and 302 Redirect / 1.6.7
Advanced 301 and 302 Redirect v1.6.7
1.7.0 trunk 1.0.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.7 1.6.8 1.6.9
advanced-301-and-302-redirect / include / script.php
advanced-301-and-302-redirect / include Last commit date
functions.php 2 years ago install.php 2 years ago main-page.php 2 years ago redirect-page.php 2 years ago script.php 2 years ago secondary-page.php 2 years ago settings.php 2 years ago style.php 2 years ago
script.php
20 lines
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2 <script>
3
4 jQuery("document").ready(function($) {
5
6 // ==================================================
7 // Confirm before data from the database
8 // ==================================================
9
10 $(".remove-form").click(function() {
11 if (confirm("Are you sure you want to permanently remove this?"))
12 return true;
13 else
14 return false;
15 }) ;
16
17
18 });
19
20 </script>