javascript Programming Glossary: talks
Attach a body onload event with JS http://stackoverflow.com/questions/1235985/attach-a-body-onload-event-with-js window.onload Dean Edwards The blog post talks more about it and here is the complete code copied from the..
Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool? http://stackoverflow.com/questions/1705952/is-possible-to-debug-dynamic-loading-javascript-by-some-debugger-like-webkit-fi script file browser. More information here Paul Irish also talks about it briefly in his excellent talk on Tooling The Webapp..
jqueryUI datepicker fires input's blur before passing date, avoid/workaround? http://stackoverflow.com/questions/1814292/jqueryui-datepicker-fires-inputs-blur-before-passing-date-avoid-workaround
Designing a fluent Javascript interface to abstract away the asynchronous nature of AJAX http://stackoverflow.com/questions/2796375/designing-a-fluent-javascript-interface-to-abstract-away-the-asynchronous-nature Asynchronous method queue chaining in JavaScript He talks about a really nice technique that allows you to implement a..
Client-side javascript to support promises, futures, etc http://stackoverflow.com/questions/3249646/client-side-javascript-to-support-promises-futures-etc but the Sitepen article points out flaws Douglas Crockford talks about Promises but I can't locate his implementation Any others..
href=“javascript:” vs. href=“javascript:void(0)” http://stackoverflow.com/questions/3666683/href-javascript-vs-href-javascriptvoid0 app is rendered totally on the browser. The server only talks to the browser through JSON messaging. As a result we only need..
Do you ever need to specify 'javascript:' in an onclick? http://stackoverflow.com/questions/372159/do-you-ever-need-to-specify-javascript-in-an-onclick
Top-Rated JavaScript Blogs [closed] http://stackoverflow.com/questions/409056/top-rated-javascript-blogs AjaxBlog by various Eric Lippert's Blog by Eric Lippert talks about JScript and JScript.Net Web Bug Track by various @scunliffe..
Why would multiple simultaneous AJAX calls to the same ASP.NET MVC action cause the browser to block? http://stackoverflow.com/questions/4428413/why-would-multiple-simultaneous-ajax-calls-to-the-same-asp-net-mvc-action-cause possible to create session less controllers. Scott Guthrie talks about these here Announcing ASP.NET MVC 3 Release Candidate..
I know its bad to store data in the DOM, but why? http://stackoverflow.com/questions/5905994/i-know-its-bad-to-store-data-in-the-dom-but-why of jQuery gave a talk at Tech4Africa in 2010 where he talks about this exact issue and proposes to do away with a separate..
Ordered JSONObject http://stackoverflow.com/questions/6993645/ordered-jsonobject JSONObject I have a servlet which talks with the database then returns a list of ordered ORDER BY time..
null vs. undefined and their behaviour in JavaScript http://stackoverflow.com/questions/7000762/null-vs-undefined-and-their-behaviour-in-javascript that was that. Douglas Crockford had a very good series of talks about some of these issues and I will link to them as soon as..
Why is it bad to make elements global variables in Javascript? http://stackoverflow.com/questions/794598/why-is-it-bad-to-make-elements-global-variables-in-javascript on exactly why JS events are bad but Christian Heilmann talks about JS best practices here you could take a look. Also try..
Is there a performance gain in including <script> tags as opposed to using eval? http://stackoverflow.com/questions/8380204/is-there-a-performance-gain-in-including-script-tags-as-opposed-to-using-eval challenging no line numbers etc. There is a third one that talks about speed but it is refuted in the comments of that answer...
Concatenate and minify JavaScript on the fly OR at build time - ASP.NET MVC http://stackoverflow.com/questions/890561/concatenate-and-minify-javascript-on-the-fly-or-at-build-time-asp-net-mvc the appendix of Professional ASP.NET 3.5 Scott Hanselman talks about Packer for .NET . This will integrate with MSBuild and..
Object Oriented Javascript best practices? [closed] http://stackoverflow.com/questions/907225/object-oriented-javascript-best-practices . Each has its pros and cons see Crockford in his video talks or get his book The Good Parts as Anon already suggested . Frameworks..
Secure distribution of NodeJS applications http://stackoverflow.com/questions/9413123/secure-distribution-of-nodejs-applications at all. It's better to give them a thin client app that talks to your server and keep your server code secure by not giving..
function* in JavaScript http://stackoverflow.com/questions/9620586/function-in-javascript of Mozilla gave a talk about EcmaScript.next . At 30 15 he talks about generators. Earlier he explains how Mozilla is experimentally..
Is it correct to use JavaScript Array.sort() method for shuffling? http://stackoverflow.com/questions/962802/is-it-correct-to-use-javascript-array-sort-method-for-shuffling shuffling and in particular the shuffle algorithms section talks about sorting a random projection it's worth reading the section..
Should I include type=“text/javascript” in my SCRIPT tags? http://stackoverflow.com/questions/985408/should-i-include-type-text-javascript-in-my-script-tags yui theater . I don't remember exactly which one he talks about this I think it was in the advanced JavaScript series..
|