Definition: The void method can be used to stop a value being returned from a function, method, or other code. It is normally used in bookmarklets to prevent the value returned from the bookmarklet processing from overwriting the web page. Void is a reserved word and cannot be used for anything other than to stop a value being returned.
Examples:
javascript:void(document.color='#cccccc')
