Bootstrap Wysiwyg editor content
Bootstrap Wysiwyg editor content
$('#edit').submit(function(e){
e.preventDefault();
var id = "<?php echo $this->getData('block_id'); ?>";
var type = $('#type').val();
<?php if ($this->getData('block_type') == 'wysiwyg') { ?>
var content = CKEDITOR.instances.field.getData();
<?php } else { ?>
var content = $('#field').val();
<?php } ?>
var dataString = 'id=' + id + '&field=' + content + '&type=' + type;
$.ajax({
type: "POST",
url: "<?php echo SITE_PATH; ?>app/cms/edit.php",
data: dataString,
cache: false,
success: function(html) {
$('#cboxLoadedContent').html(html);
}
});
});
$('#edit').submit(function(e){
e.preventDefault();
var id = "<?php echo $this->getData('block_id'); ?>";
var type = $('#type').val();
<?php if ($this->getData('block_type') == 'wysiwyg') { ?>
var content = CKEDITOR.instances.field.getData();
<?php } else { ?>
var content = $('#field').val();
<?php } ?>
var dataString = 'id=' + id + '&field=' + content + '&type=' + type;
$.ajax({
type: "POST",
url: "<?php echo SITE_PATH; ?>app/cms/edit.php",
data: dataString,
cache: false,
success: function(html) {
$('#cboxLoadedContent').html(html);
}
});
});
留言