function invertAll(field) // Invert all selections of a checkbox within a form, // just pass it the name of the checkbox field // e.g. onClick=”invertAll(document.frmTest.checkboxName)”; { if (typeof(field.length) == “undefined”) { if(field.checked == 1){field.checked = 0;} else {field.checked = 1;}
How to set all checkboxes on a from to be unchecked
function uncheckAll(field) // Sets all checkboxes in a form to be unchecked // Just pass the function the name of the field that needs setting // e.g. onClick=”uncheckAll(document.form.checkboxName);” { if (typeof(field.length) == “undefined”) { field.checked = false ; } for
How to set all checkboxes in a form to be checked
function checkAll(field) // Sets all checkboxes in a form to be checked // Just pass the function the name of the field that needs setting // e.g. onClick=”checkAll(document.form.checkboxName);” { if (typeof(field.length) == “undefined”) { field.checked = true ; addToMutationsList(field); }
Designing Web Interfaces
Principles and Patterns for Rich Interactions ISBN: 0596516258 Pages: 332 Publisher: O’Reilly Topic: HTML Want to learn how to create great user experiences on today’s Web? Designing Web Interfaces (O’Reilly) by UI experts Bill Scott and Theresa Neil presents more
Active Directory Cookbook
Solutions for Administrators and Developers ISBN: 0596521103 Pages: 1087 Publisher: O’Reilly Topic: Windows Server When you need practical hands-on support for Active Directory, the updated edition of the popular Active Directory Cookbook (O’Reilly), by Laura E. Hunter and Robbie Allen
Head First PHP and MySQL
A Brain-Friendly Guide to Dynamic, Database-Driven Sites ISBN: 0596006306 Pages: 812 Publisher: O’Reilly Topic: PHP If you’re ready to create web pages more complex than those you can build with HTML and CSS, Head First PHP & MySQL (O’Reilly Media)
SQL in a Nutshell
A Desktop Quick Reference Covering MySQL, Oracle, PostgreSQL, and SQL Server ISBN: 0596518846 Pages: 591 Publisher: O’Reilly Topic: SQL For programmers, analysts, and database administrators, SQL in a Nutshell (O’Reilly Media) is the essential reference for the SQL language used
JUNOS Enterprise Routing
A Guide to JUNOS Software and Enterprise Certification ISBN: 0596514425 Pages: 812 Publisher: O’Reilly Topic: Junos Written by Doug Marschke and Harry Reynolds, instructors and creators of the JNTCP-ER Certification Exams, JUNOS Enterprise Routing (O’Reilly) is the only comprehensive book
Programming Amazon Web Services
Outsource Your Infrastructure with S3, EC2, SQS, FPS, and SimpleDB ISBN: 0596515812 Pages: 600 Publisher: O’Reilly Topic: Web Services The web is full of opportunities for companies both large and small, but smaller companies face a difficult problem: infrastructure. Industrial-strength
Ajax The Definitive Guide
The Complete Guide to Building Interactive Applications for the Web ISBN: 0596528388 Pages: 890 Publisher: O’Reilly Topic: Ajax Is Ajax a new technology or the same old stuff? You’ll hear arguments on both sides, and both sides are right, but