2011-11-01 18:17:02 -04:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=iso-8859-1" / >
< meta name = "author" content = "Jason Wall" / >
< meta name = "PBO.auth" content = "8bff0c5d7a8f61d1e5dfa6c58da67c2b" / >
< meta name = "geo.country" content = "US" / >
< meta name = "dc.language" content = "en" / >
< meta name = "dc.title" content = "walljm.com || AJAX Bible || King James Version with Strong's Dictionary and Cross References" / >
< meta name = "description" content = "An AJAX implimentation of The King James Version Bible with Strong's Dictionary integrated." / >
< meta name = "keywords" content = "AJAX, KJV, King James Version, Strong's Dictionary, Strongs" / >
< meta name = "blogchalk" content = "United States, Missouri, Saint Louis, English, Jason, Male, 21-25, photography, poetry" / >
< meta name = "copyright" content = "All content copyrighted to Jason Wall, and available by permission of the owner." / >
2011-11-04 12:36:22 -04:00
< title > The Bible with Strong's Numbers and Cross References< / title >
2011-11-01 18:17:02 -04:00
< script type = "text/javascript" src = "js/jquery.min.js" > < / script >
2011-11-07 11:30:21 -05:00
< script type = "text/javascript" src = "js/jquery.cookie.js" > < / script >
2011-11-09 13:41:56 -05:00
< script type = "text/javascript" src = "js/jquery-ui.min.js" > < / script >
2011-11-04 12:36:22 -04:00
<!-- <script type="text/javascript" src="js/bible_ref_parsing.js"></script> -->
< script type = "text/javascript" src = "js/bible_ref_parsing.min.js" > < / script >
2011-11-07 11:32:33 -05:00
<!-- <script type="text/javascript" src="js/common.js"></script> -->
< script type = "text/javascript" src = "js/common.min.js" > < / script >
2011-11-01 18:17:02 -04:00
< script type = "text/javascript" >
$(document).ready(function()
{
2011-11-03 11:22:11 -04:00
$("#searchform").submit(function()
2011-11-01 18:17:02 -04:00
{
Search($("#searchvalue").val());
return false;
});
2011-11-03 14:49:40 -04:00
$("#growfont").click(function()
{
Settings.IncreaseResultFontSize();
return false;
});
$("#shrinkfont").click(function()
{
Settings.DecreaseResultFontSize();
return false;
});
$("#switch-panes").click(function()
{
Settings.SwitchPanes();
return false;
2011-11-09 13:41:56 -05:00
});
$("#showhelp").click(function()
{
$("#help").dialog({draggable:true, width: 700, height: 500, resizable: false});
2011-11-03 14:49:40 -04:00
});
2011-11-04 12:36:22 -04:00
$("#showhidesearch").click(function()
{
Settings.ShowHideSearch();
return false;
});
2011-11-03 14:49:40 -04:00
$("#changefont").change(function()
{
Settings.ChangeResultFont($("#changefont").val());
return false;
});
2011-11-04 12:36:22 -04:00
$(window).bind("resize", function()
{
$("#searchresults").css("height", window.innerHeight - 200);
return false;
});
$("#searchresults").css("height", window.innerHeight - 200);
2011-11-07 11:30:21 -05:00
// remember the settings...
Settings.Load();
2011-11-01 18:17:02 -04:00
});
< / script >
2011-11-09 13:41:56 -05:00
< style > @ import "css/bible.css" ; @ import "css/jquery-ui.css" ; < / style >
2011-11-01 18:17:02 -04:00
< style >
< / style >
< / head >
< body >
2011-11-03 11:22:11 -04:00
< table style = "width: 100%; padding: 12px;" >
< tr >
2011-11-04 12:36:22 -04:00
< td style = "width: 320px;" > < h1 > King James Bible < span > with Strong's Numbers and Cross References< / span > < / h1 > < / td >
2011-11-03 11:22:11 -04:00
< td id = "query" align = "center" >
< table style = "width: 100%;" >
< tr > < form id = "searchform" >
2011-11-04 12:36:22 -04:00
< td > < input id = "searchvalue" type = "search" results = "10" / > < / td >
< td style = "width: 100px;" > < input value = "Search" type = "submit" id = "searchbtn" / > < / td >
2011-11-03 11:22:11 -04:00
< / form > < / tr >
2011-11-01 18:17:02 -04:00
< / table >
2011-11-03 11:22:11 -04:00
< / td >
< / tr >
2011-11-03 14:49:40 -04:00
< tr > < td colspan = "3" id = "settings" style = "padding-top: 6px; text-align:right;" >
2011-11-09 13:41:56 -05:00
< a href = "javascript:void();" id = "showhelp" > Help< / a > |
2011-11-04 12:36:22 -04:00
< a href = "javascript:void();" id = "showhidesearch" > Hide Search< / a > |
2011-11-03 14:49:40 -04:00
< a href = "javascript:void();" id = "switch-panes" > Switch Panes< / a > | Select Font:
< select id = "changefont" > < option value = "georgia" selected = "selected" > Georgia< / option > < option value = "verdana" > Verdana< / option > < option value = "courier" > Courier< / option > < option value = "serif" > Serif< / option > < option value = "sans-serif" > Sans Serif< / option > < / select > |
< span style = "letter-spacing:2px;" > < a href = "javascript:void();" id = "shrinkfont" > A< span style = "font-size:12px;" > A< / span > < / a > | < a href = "javascript:void();" id = "growfont" > < span style = "font-size:12px;" > A< / span > A< / a > < / span > < / td > < / tr >
2011-11-03 11:22:11 -04:00
< / table >
< div id = "resultwrap" >
< div id = "result" > < / div >
2011-11-01 18:17:02 -04:00
< / div >
2011-11-04 12:36:22 -04:00
< div id = "searchresultswrap" >
2011-11-03 11:22:11 -04:00
< h3 > Search Results: < span id = "searchTotal" > < / span > < / h3 >
2011-11-01 18:17:02 -04:00
< div id = "searchresults" > < / div >
< / div >
2011-11-04 12:36:22 -04:00
< br clear = "all" / >
2011-11-09 13:41:56 -05:00
< div style = "display: none; font-size: 14px; line-height: 18px;" id = "help" >
< h3 > Acceptable Search Items:< / h3 >
< br / >
< b > John 1< / b > (displays whole chapter)< br / >
< b > John 1-2< / b > (displays both chapters< br / >
< b > John 1 - John 2< / b > (same as above)< br / >
< b > John 1:3 - 2:4< / b > (displays verses starting with chapter 1 verse 3 and ending with chapter 2 verse 4)< br / >
< b > John 1:3 - John 2:4< / b > (same as above)< br / >
< b > John 1:3-5< / b > (displays verses starting with chapter 1 verse 3 through chapter 1 vs 5)< br / >
< b > H1234< / b > (displays the strongs definition for the Hebrew # 1234)< br / >
< b > G1234< / b > (displays the strongs definition for the Greek # 1234)< br / >
< b > Jesus< / b > (searches for "Jesus". all search terms assume boolean AND, i.e. "Jesus Christ" assumes "Jesus AND Christ". an word without a number is interpreted as search).< br / >
< br / >
< b > Notes:< / b > multiple lookups can be made useing a semicolon as a seperator, i.e. "Ruth 1; g1234; jesus"). < br / >
< br / > All greek/hebrew cross references translations are taken from the 1933 Websters version and often are not the same as the KJV translation. < br / >
< br / > All source materials was taken from the < a href = "http://sourceforge.net/projects/zefania-sharp/" > Zefania XML Bible Project< / a > on SourceForge. < br / >
< br / > Any Errors and Omission you find would be appreciated. Please contact me via www.jasonwall.org.
< / div >
2011-11-01 18:17:02 -04:00
< / body >
< / html >