The History Widget

Open up your collection to your library users even more quickly via the Eight Centuries Widget. You can deploy this anywhere within your library website.


The following code is offered 'as is' to Eight Centuries libraries at no additional fee:


<!--8C Search Widget-->
<!--Insert your proxy URL in the line starting with var url="-->
<!--e.g. var url="http://exproxy.mycollege.edu:2048/login?url= -->

<script type="text/javascript">
function ncmsearch(){
var url="[ my proxy URL ]https://history.paratext.com/ncm/ncm.php/r?request_type=initial_search&databases=all&detail=0&saved_set=0&Stemming=2&query="
var searchInputEl = document.getElementById("ncmSearchInput");
document.location=url + encodeURIComponent(searchInputEl.value) ;
}</script>
<script type="text/javascript">
function getKeyValue(e,form){
var key=e.keyCode || e.which;
if (key==13){
ncmsearch();
}
}
</script>

<!--Insert the search box somewhere in your html.-->
<!--Make any style changes you want, but don't change the ids or names.-->

<div>
<div id="ncmSearchBox" style="border: 1px solid #666666; background-color:#FFFFFF;margin: 0 1.00em 1.00em 0; padding: 1.00em 0.75em;">
<div id="enterText" style="position: absolute; left: -1000em; width: 20em;">Enter your search terms:</div>
<input type="text" id="ncmSearchInput" size="30" onKeyPress="getKeyValue(event,this.form)" />
<div style="display:inline"><input type="button" value="Search" onclick="ncmsearch()"/></div>
</div>
</div>

<!--/8C Search Widget -->