File size: 1,750 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
function load_form_url(url) {
$("#pluginscontent").load(url);
$('div#pluginscontent').each(function() {
$(this).removeClass("pluginHide");
$(this).addClass("pluginShow");
});
$('div#plugincontent').each(function() {
$(this).removeClass("pluginShow");
$(this).addClass("pluginHide");
});
return false;
}
function load_plugin_url(url) {
$("#plugincontent").load(url);
$('div#pluginscontent').each(function() {
$(this).removeClass("pluginShow");
$(this).addClass("pluginHide");
});
$('div#plugincontent').each(function() {
$(this).removeClass("pluginHide");
$(this).addClass("pluginShow");
});
$(document).ready(setTimeout(function(){
$('form').submit(function(e) { // catch the form's submit
// ajax does not submit name/value of button, so use hidden input
$('input:hidden[name=action]').val(e.originalEvent.submitter.value);
$.ajax({
data: $(this).serialize(),
type: $(this).attr('method'), // GET or POST
url: $(this).attr('action'),
success: function(response) { // on success
$('#menuActionStatus').html(response);
}
});
return false; // cancel original submit event
});
}, 500));
return false;
}
function display_plugins() {
$('div#pluginscontent').each(function() {
$(this).removeClass("pluginHide");
$(this).addClass("pluginShow");
});
$('div#plugincontent').each(function() {
$(this).removeClass("pluginShow");
$(this).addClass("pluginHide");
});
return false;
}
|