Documentation
optionsSelector
Type : string
Default : '' (empty string)
Adds the element matched by the selector to the options dialog.
Precision : the HTML content of the element will be moved to the dialog then the original element will be removed from DOM.
exemples
(...)
<body>
<div id="container"></div>
<div id="custom-options-text">
You can add your custom options here.<br /><br />
For more information and documentation, please visit our website :<br /><br />
<a href="http://www.nectil.com/kaiten">http://www.nectil.com/kaiten</a>
</div>
<script type="text/javascript">
(function($){
$('#container').kaiten({
optionsSelector : '#custom-options-text',
(...)