# easy-bootstrap-shortcodes/trunk/shortcode/sectionhead/sectionhead_plugin.js

Easy Bootstrap Shortcode, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/code/shortcode/sectionhead/sectionhead_plugin.js
- Raw: https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/raw/shortcode/sectionhead/sectionhead_plugin.js
- Modified: 2016-02-19T20:49:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/code/shortcode/sectionhead/sectionhead_plugin.js#L10-L20`.

```javascript
var sectionhead={
    title:"Section Head Shortcode",
    id :'oscitas-form-sectionhead',
    pluginName: 'sectionhead',
    showprobtn: false
};
(function() {
    _create_tinyMCE_options(sectionhead);
})();

function ebs_return_html_sectionhead(pluginObj){
    var form = jQuery('<div id="'+pluginObj.id+'" class="oscitas-container" title="'+pluginObj.title+'"><table id="oscitas-table" class="form-table">\
			 <tr>\
        <th class="aligncenter"><img src="'+ebs_url+'shortcode/sectionhead/screenshot.jpg" /></th>\
        </tr>\
		</table>\
		</div>');
    return form;
}


function create_oscitas_sectionhead(pluginObj){
}
```
