Browsing: javascript

Articles
0
AJAX Bible: Now with Robinsons Morphological Analysis Codes

I have add greek morphology to the AJAX Bible. Thanks again to the Zephania Bible Project for providing source xml files. The Morphology is derived from Robinson’s Morphological Analysis Codes, and is linked to strongs numbers.Next up: Greek NT based on the Textus Receptus source text, and Word Search!

Articles
0
Javascript: Find the Shared Values of Any Two Sets

I’ve been working on adding word search capabilities to the AJAX Bible, and in the process I had to come up with a way to find the shared values between two sets, or in my case with Javascript, two arrays. There aren’t many algorithms published online that I could find,…

Links
0
5058

Jacascript Tabs Fixes the tab behavior in textfields, so that the tab key doesn’t move you to the next form element, but creats 5 spaces instead.

Articles
0
Javascript Bible Reference Parsing Object: Update

I updated the regex expressions for Javascript Bible Reference Parsing Object to reflect some of the common abbreviations. Thanks to the Folks at the GNPCB.org for posting common book queries. Thanks also to Jeremy for helping me simplify my regex expressions.

Articles
0
Javascript Bible Reference Parsing Object

In an effort to encourage the coding of a bible reference object (see previous post on my bible app), I though I would post some specifications in a clearer format than I had previously, along with some example inputs and outputs. Feel free to comment in the comments section, and…

Articles
0
DOM Scripting with Mozillia: Name and ID conflicts

If you are scripting with the DOM in mozilla browsers, and probably with IE browsers as well, you should never name your elements the same as your id. example:Bad:<input name="key" id="key" />Good:<input name="key1" id="key2" />If you gvie the elements name attribute and id attribute the same value, then the DOM…