abs, log, sin etc.
Client-Side JavaScript:
Button - Allows to work with buttons on an HTML form.
Properties like form, name, value and methods like click,
focus etc.
document - Contains information about the current
document, and provides methods for displaying HTML output to the user.
Properties like forms - array of forms on this document (objects),
cookie, images - array of images etc. You can do all kinds
of things with this object, e.g. if you want to change the first image
on your document from the empty_cart.gif to full_car.gif:
document.images[0].src = "full_car.gif";
Form - Lets you work with forms in the document.
Properties like action, elements - array with all form
elements (buttons, checkboxes, text
|