Search Results

4
votes

Where to place Javascript in a HTML file?

With 100k of Javascript, you should never put it inside the file. Use an external script Javascript file. There's no chance in hell you'll only ever use this amount of code in only one HTML page. L …
2
votes

Software that clicks e-mail links on page?

Could something in the browser be prefetching the links? For example, the Firefox extension Fasterfox does that (which is the reason why I …
0
votes

Why doesn’t || seem to work as a coalesce/default operator in JavaScript?

But if I type that into Firebug or use it in code, it complains that b is not defined, at list on FF3/win What do you mean, "is not defined"? You mean Javascrip …
1
vote

Is it possible to detect if Microsoft Excel is installed from a Web Application

Why Excel? What if I have OpenOffice.org instead? Just warn the user what you're going to send them, mark the link with "Excel file", and let him decide. …
0
votes

How dangerous is it send HTML in AJAX as opposed to sending JSON and building the HTML?

The only reason I'm interested in doing this is because of the huge pain it is for front-end developers every time there's a DOM structure/CSS change so you now have to go figure out …
1
vote

Left() function in Javascript or jQuery

Left() is of almost no use here, as you'd first have to calculate the offset. You could, however, use a regular expression, to either pull out the number, or delete illegal characters: …
3
votes

JavaScript: Is IP In One Of These Subnets?

The best approach is IMO making use of bitwise operators. For example, 123.123.48.0/22 represents (123<<24)+(123<<16)+(48<<8)+0 (=2071670784; this might …
0
votes

Isn’t AJAX on pageload a bad thing?

The best reason to do this is to have a single source for the content: instead of getting the first instance embedded in the page, and updated instances coming from Ajax, now every …