The Wayback Machine - https://web.archive.org/web/20160123073831/http://javascript.about.com/
The Latest in JavaScript
Use responseText and responseXML
Using responseText and responseXML determines if the server responses in AJAX are in XML or plain text. The field in which the response is returned depends upon what format is being used.
How using innerHTML can save you some time
The innerHTML property is a convenient way to access the entire content of the HTML container. It can be used to either retrieve from or insert content into a container.
Using HTML to Create Collapsible Div Menus
HTML collapsible div menus save space on the web page. The content heavy page becomes “decluttered” which improves its aesthetic and functionality.
How to use script tags to link to external JavaScript
To link to external JavaScript, use Script tags. These attributes will attach another JavaScript to the page, allowing further JavaScript code to run.
JavaScript Form Processing
This is a complete example of all the HTML and JavaScript required to unobtrusively attach JavaScript validations to a form. It also includes the code to validate the HTML 5 required and pattern attributes across all browsers.
JavaScript Form Processing
Even though older browsers don't support the HTML5 pattern attribute for form fields we can implement it ourselves in JavaScript.
JavaScript Form Processing
Even though older browsers don't support the HTML5 required attribute for form fields we can implement it ourselves in JavaScript.
JavaScript Form Processing
Once our form validation detects an error we need an unobtrusive way to display the error.
Variables, Functions, Properties and Methods
While these four terms have distinct meanings in some languages, things are not as clear cut in JavaScript.
JavaScript Form Processing
When we set up unobtrusive form field validation we can easily share validation between fields that need to validate the same way.
Radio Button Validation
Everything you need to know about radio button creation and validation.
JavaScript Form Processing
The modern unobtrusive way of attaching JavaScript to validate a form in your web page doesn't require any changes to the HTML of the form.
JavaScript Form Processing
Changes to both JavaScript and HTML have affected the way we should be using JavaScript to validate our forms and will affect it further in the future.
Null and Undefined
Both null and undefined in JavaScript do not always behave as you might expect them to.
JavaScript Testing
Which order you run your tests in will affect how likely it is that you will need to rerun lots of tests if one fails.
Prev
1
2
3
4