javascript Programming Glossary: widely
Browser detection versus feature detection http://stackoverflow.com/questions/1294586/browser-detection-versus-feature-detection this question It seems to me browser detection has been widely frowned upon since this post by Resig a couple of years ago...
Event detect when css property changed using Jquery http://stackoverflow.com/questions/1397251/event-detect-when-css-property-changed-using-jquery DOMAttrModified is the one you need. Granted these are not widely implemented but are supported in at least Gecko and Opera browsers...
Can I zoom into a web page like IE or Firefox do, using programming? http://stackoverflow.com/questions/1647237/can-i-zoom-into-a-web-page-like-ie-or-firefox-do-using-programming CSS property but it is part of CSS3 and is most likely not widely supported. By setting this on the body element using JavaScript..
Is there an equivalent of the __noSuchMethod__ feature for properties, or a way to implement it in JS? http://stackoverflow.com/questions/2266789/is-there-an-equivalent-of-the-nosuchmethod-feature-for-properties-or-a-way can actually do what you want but unfortunately is not widely implemented ECMAScript Harmony Proxies . There are only two..
Best Practice: Access form elements by HTML id or name attribute? http://stackoverflow.com/questions/2435525/best-practice-access-form-elements-by-html-id-or-name-attribute etc . 2 seems to be the most intuitive and it seems to be widely used but I haven't seen it referenced in the Gecko documentation..
IE/Chrome: are DOM tree elements global variables here? http://stackoverflow.com/questions/3434278/ie-chrome-are-dom-tree-elements-global-variables-here as globals. Stick to document.getElementById which is more widely supported and less ambiguous. You can write a trivial wrapper..
The javascript “resizeTo” function not working in Chrome and Opera http://stackoverflow.com/questions/3641648/the-javascript-resizeto-function-not-working-in-chrome-and-opera it can also be manually disabled in Firefox. It has been widely misused so most browser vendors feel that it should be disabled..
Are any Javascript engines tail call optimized? http://stackoverflow.com/questions/3660577/are-any-javascript-engines-tail-call-optimized http lambda the ultimate.org node 3047 As far as I know no widely available implementations of JS currently do automatic TCO...
Object.defineProperty in ES5? http://stackoverflow.com/questions/3830800/object-defineproperty-in-es5 will give you problems they could be mimicked with widely supported non standard methods such as __defineGetter__ __defineSetter__..
JavaScript function declaration and evaluation order http://stackoverflow.com/questions/3887408/javascript-function-declaration-and-evaluation-order to which in this case is a function . This is the most widely used mechanism in javascript for breaking closures for example..
May function declarations appear inside statements in JavaScript? http://stackoverflow.com/questions/4071292/may-function-declarations-appear-inside-statements-in-javascript goes further to make a note on this in Section 12 Several widely used implementations of ECMAScript are known to support the.. a function statement The term function statement has been widely and wrongly used to describe a FunctionDeclaration . This is..
string to int use parseInt or Number? http://stackoverflow.com/questions/4090518/string-to-int-use-parseint-or-number like parseInt Number 0xF 15 parseInt 0xF 15 In addition a widely used construct to perform Numeric type conversion is the Unary..
What advantages does using (function(window, document, undefined) { … })(window, document) confer? http://stackoverflow.com/questions/5020479/what-advantages-does-using-functionwindow-document-undefined-windo may be negligible . Passing the global object is also a widely used technique on non browser environments where you don't have..
window.onload vs document.onload http://stackoverflow.com/questions/588040/window-onload-vs-document-onload vs document.onload Which is more widely supported window.onload or document.onload javascript javascript.. are they supported window.onload appears to be the most widely supported. In fact some of the most modern browsers have in..
Why is the DOMSubtreeModified event deprecated in DOM level 3? http://stackoverflow.com/questions/6659662/why-is-the-domsubtreemodified-event-deprecated-in-dom-level-3 despite promises of one being under development This is widely bemoaned in the web dev community as in almost all cases deprecation..
Is the recommendation to include CSS before JavaScript invalid? http://stackoverflow.com/questions/9271276/is-the-recommendation-to-include-css-before-javascript-invalid HTML while it fetched the CSS file in parallel . Hence the widely repeated advice to put stylesheets first &ndash they would download..
function* in JavaScript http://stackoverflow.com/questions/9620586/function-in-javascript and even if it doesn't change it probably won't show up widely in other browsers for a while. Overview First class coroutines..
|