Search Results

2
votes

Should I use window.onload or script block?

window.onload on IE waits for the binary information to load also. It isn't a strict definition of "when the DOM is loaded". So there can be significant lag between when the page is perceived to …
1
vote

Are semicolons needed after an object literal assignment in JavaScript?

@JasonBunting Try to be less arrogant and more helpful because you never know when you might be wrong ;) In this case there is no need for a semicolon at the end of the statement. The con …
-1
votes

Are semicolons needed after an object literal assignment in JavaScript?

@JasonBunting Again you are wrong. Taken from the ECMA spec Certain ECMAScript statements (empty statement, variable statement, expression statement, do-while …
1
vote

When is the most effective time to do code reviews?

The best time to do a code review is NOW. As long as the other party has a break in their day, code reviews are least effective when done at the end like an after thought. They should be part of …