HTML doesn’t provide all the possible form fields, some we have to add ourselves with JavaScript.
The combo box is one form field that HTML does not provide (although from the…
HTML doesn’t provide all the possible form fields, some we have to add ourselves with JavaScript.
The combo box is one form field that HTML does not provide (although from the…
The Document Object Model is attached to window.document and some of the Browser Object Model is too.
In this fourth tutorial on the Browser Object Model we look at the more…
Regular Expressions make JavaScript comparisons easier
The eighth tutorial on Regular Expressions looks at how to test for multiple repetitions of the same character (or class of character).
Repetitions…
JavaScript Regular Expressions can test any character at all.
The twelfth tutorial on Regular Expressions shows you how to include any character at all in your JavaScript Regular Expression by specifying…
JavaScript can work with octal and hexadecimal numbers as well as decimal.
Sometimes functions such as parseInt() don’t do quite what you expect in converting text into numbers. This is because…