Quill toolbar butons doesn't work in Laravel
up vote
0
down vote
favorite
I'm using quill editor in Laravel. There is a problem with toolbar. When i click on toolbar's button it doesn't respond. This is my code:
<div id="editor-container"> </div>
<script>
var quill = new Quill('#editor-container', { theme: 'snow'});
</script>
javascript php laravel editor quill
add a comment |
up vote
0
down vote
favorite
I'm using quill editor in Laravel. There is a problem with toolbar. When i click on toolbar's button it doesn't respond. This is my code:
<div id="editor-container"> </div>
<script>
var quill = new Quill('#editor-container', { theme: 'snow'});
</script>
javascript php laravel editor quill
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm using quill editor in Laravel. There is a problem with toolbar. When i click on toolbar's button it doesn't respond. This is my code:
<div id="editor-container"> </div>
<script>
var quill = new Quill('#editor-container', { theme: 'snow'});
</script>
javascript php laravel editor quill
I'm using quill editor in Laravel. There is a problem with toolbar. When i click on toolbar's button it doesn't respond. This is my code:
<div id="editor-container"> </div>
<script>
var quill = new Quill('#editor-container', { theme: 'snow'});
</script>
javascript php laravel editor quill
javascript php laravel editor quill
asked Nov 11 at 2:53
Ismoilov Amir
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Try this code
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Try this code
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
add a comment |
up vote
0
down vote
Try this code
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
add a comment |
up vote
0
down vote
up vote
0
down vote
Try this code
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
Try this code
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
var quill = new Quill('#editor', {
theme: 'snow'
});
</script>
answered Nov 11 at 2:58
Brandon
1
1
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
add a comment |
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Brandon, it work in another services. But only in my site it doesn't work
– Ismoilov Amir
Nov 11 at 3:23
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
Please explain your answer, instead of just putting some code. This helps the readers and increases your answer's credibility.
– PradyumanDixit
Nov 11 at 3:29
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245444%2fquill-toolbar-butons-doesnt-work-in-laravel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown