Search Results

3
votes

Does my JavaScript code have any security vulnerabilities?

That seems like a rather obtuse method of having a user accept an agreement! Why have your accept button link directly to your file? If the hoops were due to the fact that you're worried that someo …
1
vote

Is the YUI Loader Utility reliable?

Generally yes. Nothing should go wrong, and assuredly if it did, yahoo would be on the problem in no time! …
0
votes

How do you performance test JavaScript code?

The golden rule is to NOT under ANY circumstances lock your users browser. After that, I usually look at execution time, followed by memory usage (unless you're doing something crazy, in which case …
1
vote

Javascript interpreter to replace Python

Google's V8 can be used as a standalone interpreter. Configuring with scons sample=shell will build an executable …
3
votes

JavaScript string concatenation

In the words of Knuth, "premature optimization is the root of all evil!" The small defference either way will most likely not have much of an effect in the end; I'd choose the more readable one. …
0
votes

What’s a good tool to screen-scrape with Javascript support?

Keep in mind that and javascript fanciness is messing with the brower's internal DOM model of the page, and does nothing to the raw HTML. …