Now you can easily include the actual ebible widget on your own blog or webpage. Users can search for verses and chapters and study right on your website. It is as simple as copying and pasting our code snippet to your page.
<html>
<head>
<script src="http://www.ebible.com/javascripts/prototype.js" type="text/javascript"></script>
<script src="http://www.ebible.com/javascripts/ebiblewidget.js" type="text/javascript"></script>
</head>
<body>
<form action="#" method="get" onsubmit="eb.loadPassage($F('search'))">
<input type="text" id="search" />
</form>
<div id="ebible1"></div>
<script type="text/javascript">
// create the main eBible widget
eb = new eBible("ebible1", {
varName: "eb",
domain: "http://localhost:3000"
});
</script>
...
</body>
</html>