BlooPlace – IT Blog

August 31st, 2014

A list of WysiBB BBCode buttons and explanation on usage

Code, by admin.

Since WysiBB lacks a proper documentation (or at least I couldn’t find one), I present you a complete (as of the post’s date) list of all the BBcode default buttons.
If you want to have only a specific set of BBcode buttons, you need to declare it as seen below. The base definition can be seen in the jquery.wysibb.js file at the top of it.

<head>
<script src=”//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js”></script>
<script src=”http://cdn.wysibb.com/js/jquery.wysibb.min.js”></script>
<link rel=”stylesheet” href=”http://cdn.wysibb.com/css/default/wbbtheme.css” />
<script>
$(document).ready(function() {
var wbbOpt = {
//add only the desired BBcode buttons
buttons:"bold,italic,underline,strike,|,link,img,sup,sub,justifyleft,justifycenter,justifyright,table,bullist,numlist,quote,offtop,code,fontcolor,fontsize,fontfamily,fs_verysmall,fs_small,fs_normal,fs_big,fs_verybig,smilebox,video,removeformat"
}
$(“#editor”).wysibb(wbbOpt);
});
</script>
</head>
<body>
<textarea id=”editor”></textarea>
</body>

 

If above is used, it would look like this:

All wysibb buttons used in a single textarea

All wysibb buttons used in a single textarea

 

 

 

 

 

 

 

| – delimeter (a line) between two buttons
bold – Bold text
italic – Italic text
underline – Underlined text
strike – Striked though text
link – Insert a link
img – Insert an image
sup – Superscript (x^2)
sub – Subscript
justifyleft – Align left
justifycenter – Align center
justifyright – Align right
table – Insert table
bullist – • Unordered list
numlist – 1. Ordered list
quote – Quote
offtop – Offtopic
code – Code
fontcolor – Font color
fontsize – Font size
fontfamily – Font family
fs_verysmall – Very small font size
fs_small – Small font size
fs_normal – Normal font size
fs_big – Big font size
fs_verybig – Very big
smilebox – Insert emoticon
video – Insert YouTube video
removeFormat – Remove text formatting

A complete list would be

buttons:"bold,italic,underline,strike,|,link,img,sup,sub,justifyleft,justifycenter,justifyright,table,bullist,numlist,quote,offtop,code,fontcolor,fontsize,fontfamily,fs_verysmall,fs_small,fs_normal,fs_big,fs_verybig,smilebox,video,removeformat"

Bonus: all the smiles
sm1 – Smile
sm2 – Laughter
sm3 – Wink
sm4 – Thank you
sm5 – Scold
sm6 – Shock
sm7 – Angry
sm8 – Pain
sm9 – Sick

Back Top

Leave a Reply