Include the client JavaScript & CSS libraries
<link rel="stylesheet" type="text/css" href="dbnetsuite.css.ashx" />
<script language="JavaScript" src="dbnetsuite.js.ashx"></script>
Client-side configuration script
<script>
jQuery(document).ready( init )
function init()
{
var dbnetspell1 = new DbNetSpell("dbnetspell1");
with (dbnetspell1)
{
connectionString = "DictionaryDatabase"
dictionaryTableName = "english_us"
registerElement("biography")
initialize()
}
}
</script>
HTML markup
<table>
<tr>
<td>
<iframe contentEditable="true" id="biography" style="width:800px;height:400px;border:1pt solid silver;" src="iframe_content.html">
</iframe>
</td>
</tr>
</tr>
<td>
<div id="dbnetspell1" style="float:right"></div>
</td>
</tr>
</table>