jordandelozier / wysibb

WYSIWYG BBcode editor
http://www.wysibb.com
246 stars 86 forks source link

execCommand doesn't accept bb codes, only text. #130

Open AlexeyKosov opened 9 years ago

AlexeyKosov commented 9 years ago

This example does not work if insert a quote with bb codes rather than plain text.

$(document).ready(function() {
  $("#button").click(function() {
     $('#editor').execCommand('quote',{author: 'WysiBB',seltext:'This is a quote text'});
  });
})