When I initialize bootstrap-wysihtml5 with class name it will only initialize first one and rest of the remain normal text-area
Is there any way to handle it
<script>
$(document).ready(function() {
$('.vid_description').wysihtml5();
});
</script>
I guess, the method wysihtml5() is only called for the first element.
Iterate over all elements and call the initialization method for each element separately: