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...