bootstrap basic text editor

Solutions on MaxInterview for bootstrap basic text editor by the best coders in the world

showing results for - "bootstrap basic text editor"
Bethany
27 Jun 2017
1<div class="container-fluid">
2       <div class="row">
3         <h2 class="demo-text">A demo of jQuery / Bootstrap based editor</h2>
4          <div class="container">
5              <div class="row">
6              <div class="col-lg-12 nopadding">
7              <textarea id="demo-editor-bootstrap"></textarea>
8         </div>
9       </div>
10 </div>
11</div>
12 
13</div>
14
Maia
22 Jun 2016
1<script>
2 
3                $(document).ready(function() {
4 
5                   $("#demo-editor-bootstrap").Editor();
6 
7                });
8 
9</script>
10