PluginProbe
Image Source Control Lite – Show Image Credits and Captions / 1.1.3
Image Source Control Lite – Show Image Credits and Captions v1.1.3
3.12.0 3.11.0 trunk 1.1 1.1.1 1.1.2 1.1.2.1 1.1.3 1.10 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.2 1.2.0.1 1.2.0.2 1.2.0.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.4.1 1.3.5 All 110 releases
image-source-control-isc / js / isc.js

isc.js in Image Source Control Lite – Show Image Credits and Captions 1.1.3, at js/isc.js

17 lines 499 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function($) {
2
3 $('#isc_add_metafields').click(function(){
4 $('#isc_loading_img').show();
5 var data = {
6 action: 'add_meta_fields',
7 whatever: 1234
8 };
9
10 // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
11 $.post(ajaxurl, data, function(response) {
12 $('#add_metafields_result').html( response );
13 $('#isc_loading_img').hide();
14 });
15 });
16
17 });