1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<script>
$(document).ready(function () {
// Ckeditor
var config = {
toolbar:
[
['Source','-','Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat','-','Link','Unlink'],
['NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
'/',
['TextColor','BGColor'],[ 'Image','Table','HorizontalRule','Smiley','SpecialChar' ],['Styles','Format','Font','FontSize']
]
};
$('.ckeditorUPDTSESSION').ckeditor(config);
});
</script>
Commentaire :<br>
<textarea name="f_comment" id="f_comment_updt" class="ckeditorUPDTSESSION" rows="4" cols="4"></textarea> |
Partager