PluginProbe ʕ •ᴥ•ʔ
Advanced 301 and 302 Redirect / 1.7.0
Advanced 301 and 302 Redirect v1.7.0
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 4 weeks ago install.php 4 weeks ago main-page.php 4 weeks ago redirect-page.php 4 weeks ago script.php 4 weeks ago secondary-page.php 4 weeks ago settings.php 4 weeks ago style.php 4 weeks 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>