javascript Programming Glossary: standardised
Is localStorage.getItem('item') better than localStorage.item or localStorage['item']? http://stackoverflow.com/questions/12632463/is-localstorage-getitemitem-better-than-localstorage-item-or-localstoragei be preferred The getter and setter provide a consistent standardised and crossbrowser compatible way to work with the LS api and..
What is the minimum valid JSON? http://stackoverflow.com/questions/18419428/what-is-the-minimum-valid-json JSON.parse and JSON.stringify available in web browsers is standardised in ES5 and that clearly defines the acceptable JSON texts like..
IE/Chrome: are DOM tree elements global variables here? http://stackoverflow.com/questions/3434278/ie-chrome-are-dom-tree-elements-global-variables-here IE then WebKit joined in and now both the previously unstandardised practice of putting named elements on document properties and.. IE only practice of putting them on window are being standardised by HTML5 whose approach is to document and standardise every..
“javascript:void(0);” vs “return false” vs “preventDefault()” http://stackoverflow.com/questions/3498492/javascriptvoid0-vs-return-false-vs-preventdefault in most browsers although this isn't really properly standardised. You can also detect keypresses like Space or Enter on it to..
Where is the JavaScript DOM API documented? http://stackoverflow.com/questions/3768606/where-is-the-javascript-dom-api-documented implemented yet and may be changed before the document is standardised . The DOM is only the document object model it specifies what.. of window . The browser object model BOM was previously unstandardised HTML5 is making the first effort to properly document it. HTML5.. of the browser object model BOM that were not previously standardised. Stuff like window that isn't directly connected to the document..
Javascript object Vs JSON http://stackoverflow.com/questions/8294088/javascript-object-vs-json we've stringified the object into JSON notation i.e. a standardised way to represent data we can transmit the JSON representation..
Difference between application/x-javascript and text/javascript content types http://stackoverflow.com/questions/9664282/difference-between-application-x-javascript-and-text-javascript-content-types transitional period until application javascript could be standardised. You should use application javascript . This is documented..
|