16
votes
Why is using Javascript eval function a bad idea?
eval isn't always evil. There are times where it's perfectly appropriate.
However, eval is currently and historically massively over-used by people who don't know what they're doing. That i …
1
vote
Is JavaScript really the best we can do for client scripting?
On Windows, you can register other languages with the Scripting Host and have them available to IE. For example VBScript is supported out of the box (though it has never gained much popularity as i …
1
vote
Can I pass a JavaScript variable to another browser window?
Yes, scripts can access properties of other windows in the same domain that they have a handle on (typically gained through window.open/opener and window.frames/parent). It is usually more manageab …
1
vote
IE Javascript Clicking Problem
setAttribute is unreliable in IE. It treats attribute access and object property access as the same thing, so because the DOM property for the 'class' attribute is called 'className', you would hav …
1
vote
What’s the (JavaScript) Regular Expression I should use to ensure a string is a valid file name?
If you're taking a string path from the user (eg. by reading the .value of a file upload field), you can't actually be sure what the path separator character is. It might be a backslash (Windows), …
0
votes
How do you determine html clicked on with javascript?
You can inject code into an iframe, but only if that iframe is on the same domain as the page you're injecting from, for obvious security reasons.
<iframe id="framedpage" src="fr …
2
votes
Pattern for wrapping an Asynchronous JavaScript function to make it synchronous
Sorry, JavaScript does not provide the language primitives (eg. threads or coroutines) to make asynchronous things act synchronously or vice-versa.
You generally* get one thread of executio …
1
vote
Issue with IE Selection and Range
document.selection.
However the TextRange object returned by IE does not match Firefox/WebKit/W3's, and determining the exact positions of the start and end points is very frustrating. Depe …
3
votes
What is the best JavaScript code to create an img element
oImg.setAttribute('width', '1px');
'px' is for CSS only. Use either:
oImg.width= '1';
to set a width through HTML, or:
oI …
2
votes
Is it possible to read the clipboard in firefox, safari and chrome using javascript?
Dupe of this question: http://stackoverflow.com/questions/127040
In addition to the correct answer there, Flash 10 now only allows wr …
3
votes
Is there an Internet Explorer approved substitute for selectionStart and selectionEnd?
IE's Range implementation is a slithy horror. It really wants you to use the execrable execCommand interface instead of anything involving indexing into the text.
There are two approaches I …
9
votes
Why split the <script> tag when writing it with document.write()?
< /script> has to be broken up because otherwise it would end the enclosing < script> block too early. Really it should be split between the < and the /, because a script block is supposed …
1
vote
How can web form content be preserved for the back button
It's up to the browser, but in most cases you don't have to do anything.
IE, Firefox, etc. will happily remember the contents of the form in the previous page, and show it again when Back i …
2
votes
Popup detection before user logs in
As others have commented, the only way to find out for sure is to try it.
However, a good approximate answer to the question “is a popup-blocker installed” is, these days, “yes”. All recent …
2
votes
Create an empty object in JavaScript with {} or new Object()?
The object and array literal syntax {}/[] was introduced in JavaScript 1.2, so is not available (and will produce a syntax error) in versions of Netscape Navigator prior to 4.0.
My fingers …
