" />')">
or
$(function(){
LADON.bindPopupInline( LADON.el.$content.find( ".popup-inline" ) );
});
function k_delete_field( fid, fname, nonce ){
if( confirm('') ){
var qs = 'ajax.php?act=delete-field&fid='+fid+'&nonce='+encodeURIComponent( nonce );
$.ajax({
dataType: "text",
url: qs
}).done(function( data ) {
if( data === "OK" ){
var $field = $('#k_element_'+fname);
LADON.slideFadeHide( $field, 400, function() {
if ( !LADON.data.overflowScrolling ) {
$field.find( ".scroll-relation" ).doOnce(function() {
$( this ).mCustomScrollbar( "destroy" );
});
}
});
}
else{
alert( data );
}
});
}
}