In this small tutorial i will show you How To Hide Toolbar In Summernote Editor, many times customer's have requirement to enable only specific tool or option in summernote editor,for this we need to customize toolbar in summernote.
We can very easily enable or disable summernote tools in laravel or php using javascript.
<script>
$(document).ready(function() {
$('#summernote').summernote({
height: 300,
placeholder: 'websolutionstuff.com',
toolbar: [
['style', ['bold', 'italic']], //Specific toolbar display
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
});
});
</script>
Using above javascript we can disply specific toolbar in summernote.
For Example:
Currently 4 different font style display in summernote but if you need only specific then try below
In this article, we will see how to upload and preview images in react js. You can learn how to show an i...
Sep-06-2022
In this tutorial, I will show you how to generate barcodes using the milon/barcode package. In this example, we wil...
Jun-06-2020
Hello, laravel web developers! In this article, we'll see how to Socialite login with github in laravel 11. In...
Aug-12-2024
In this article, we'll explore a simple way to validate passwords and confirm passwords using jQuery. Password valid...
Sep-02-2020