| javascript Programming Glossary: theoreticallyHow to achieve lazy loading with RequireJS? http://stackoverflow.com/questions/10911044/how-to-achieve-lazy-loading-with-requirejs  without actually triggering the doStuff route Is this the theoretically correct way of going about 'on demand' lazy loading of RequireJS.. to use a string literal and not a variable . Is this the theoretically correct way of going about 'on demand' lazy loading of RequireJS.. 
 Is there a native machine code compiler for JavaScript? http://stackoverflow.com/questions/1118138/is-there-a-native-machine-code-compiler-for-javascript  are no static compilers for javascript. It is certainly theoretically possible however a static compilation of javascript would need.. 
 AngularJS $resource RESTful example http://stackoverflow.com/questions/13269882/angularjs-resource-restful-example  object and then call any of your custom functions on it theoretically var something src.GetTodo id 123 something.foo 'hi there' something.UpdateTodo.. 
 Add table row in jQuery http://stackoverflow.com/questions/171027/add-table-row-in-jquery  of having no rows but still isn't bulletproof as you could theoretically have multiple tbody elements and the row would get added to.. 
 Using JS how can I stop child Iframes from redirecting or at least prompt users about the redirect http://stackoverflow.com/questions/1794974/using-js-how-can-i-stop-child-iframes-from-redirecting-or-at-least-prompt-users  try to simply ignore it and just use the iframe as is  theoretically they are no longer able to bust this frame.  this theory will.. 
 JavaScript dependency management http://stackoverflow.com/questions/3202606/javascript-dependency-management    share improve this question   Whilst you could theoretically write a static analysis tool that detected use of globals defined.. 
 Small Ajax JavaScript library http://stackoverflow.com/questions/3470895/small-ajax-javascript-library  a JavaScript object or array this is a valid source. You theoretically should then be able to call the remote service directly. I haven't.. 
 Access all local variables http://stackoverflow.com/questions/3831932/access-all-local-variables  this in any browser implementation of JavaScript. It's theoretically possible that an implementation could provide an extension to.. 
 Why not eval() JSON? http://stackoverflow.com/questions/4270597/why-not-eval-json  may be compromised. Man in the middle attacks could theoretically alter the contents of data being delivered to the client. Your.. 
 How are closures and scopes represented at run time in JavaScript http://stackoverflow.com/questions/5368048/how-are-closures-and-scopes-represented-at-run-time-in-javascript  been GC'd and no longer exists as is the case in f5 which theoretically means that it could GC x y. V8 gsnedders@dolores ~ v8 expose.. 
 JavaScript - Is it possible to view all currently scheduled timeouts? http://stackoverflow.com/questions/5817526/javascript-is-it-possible-to-view-all-currently-scheduled-timeouts  alert 'test' 30 seconds from now It seems like there theoretically should be some way to get this information since pretty much.. 
 Javascript engine can not be found - scripting for the Java platform http://stackoverflow.com/questions/6089773/javascript-engine-can-not-be-found-scripting-for-the-java-platform  application can't find the Javascript engine that should theoretically come with the JRE most of them have the JDK anyway . How can.. 
 addEventListener vs onclick http://stackoverflow.com/questions/6348494/addeventlistener-vs-onclick  Using this approach DOM Level 2 events you can attach a theoretically unlimited number of events to any single element. The only practical.. 
 Running Exe in Firefox why do I get an error http://stackoverflow.com/questions/6472435/running-exe-in-firefox-why-do-i-get-an-error  args var parameters c start winword.exe So this would work theoretically html head script function RunExe path try  var ua navigator.userAgent.toLowerCase.. 
 Boolean HTML Attributes http://stackoverflow.com/questions/706384/boolean-html-attributes  If you're trying to set ˜checked as an attribute which theoretically you should do by setting it to the string checked don't expect.. 
 Arguments.callee is deprecated - what should be used instead? http://stackoverflow.com/questions/8361642/arguments-callee-is-deprecated-what-should-be-used-instead  browser   share improve this question   Yes that's what theoretically should be used. You're right. However it doesn't work in some.. 
 Multiple inheritance/prototypes in JavaScript http://stackoverflow.com/questions/9163341/multiple-inheritance-prototypes-in-javascript  for the first definition . To demonstrate how this is theoretically possible it could be achieved by attaching the secondary chain.. 
 Extracting the exponent and mantissa of a Javascript Number http://stackoverflow.com/questions/9383593/extracting-the-exponent-and-mantissa-of-a-javascript-number  the same sense as prime factorization. What you want can theoretically be done very quickly by first handling the sign then using a.. 
 Number value wrong in event bound through a for loop http://stackoverflow.com/questions/16565567/number-value-wrong-in-event-bound-through-a-for-loop  the i variable was already changed by the loop iteration. Theoretically you can use closure to make things working i.e. for var i 0.. 
 If you delete a DOM element, do any events that started with that element continue to bubble? http://stackoverflow.com/questions/2732818/if-you-delete-a-dom-element-do-any-events-that-started-with-that-element-contin  continues it. See the test pages and discussion below. Theoretically Andy E's head helpfully found that DOM2 says the event should.. 
 'Calling a method' OR 'sending a message' in Objective C http://stackoverflow.com/questions/2852381/calling-a-method-or-sending-a-message-in-objective-c   objective c javascript   share improve this question   Theoretically they're different. Practically not so much. They're different.. 
 Close Parent window in fireFox http://stackoverflow.com/questions/343744/close-parent-window-in-firefox  EDIT added a bit of context as suggested by Diodeus Theoretically opener.close should be the code from the popup close the window.. 
 How to use this square cursor in a HTML input field? http://stackoverflow.com/questions/3758023/how-to-use-this-square-cursor-in-a-html-input-field  issues Accepts any text a normal input can Backspace works Theoretically can support pasting text Usual caveats apply still most notably.. 
 Javascript FileAPI: Iterating Directories? http://stackoverflow.com/questions/4238269/javascript-fileapi-iterating-directories   javascript dnd fileapi   share improve this question   Theoretically what you describe is doable with the FileReader API. For example.. 
 Proper way to initialize an array's length in javascript? http://stackoverflow.com/questions/4852017/proper-way-to-initialize-an-arrays-length-in-javascript  this question   Why do you want to initialize the length Theoretically there is no need for this. It can even result in confusing behavior.. 
 Javascript check file size http://stackoverflow.com/questions/7909641/javascript-check-file-size   javascript filesize   share improve this question   Theoretically you could use XHR to issue a HTTP HEAD request and check the.. 
 |