0
votes
Adding an input field to the dom and focusing it in IE
What version IE? What's your DocType set to? is it strict, standards or quirks mode? Any javascript errors appearing (check the status bar bottom left for a little yellow warning sign) ? Enable err …
2
votes
Is it advisable to use arrays in Javascript using tens of thousands of indexes?
In my experience, moving beyond a few thousand lines in an array cached client-side in a browser led to hellish experiences. Bloated browser memory footprints, slow load times and general sluggishn …
1
vote
ie8 var w= window.open() - “Message: Invalid argument.”
What does position four represent, the one that has 'false' as an value? Shouldn't that be false, (i.e. without quotes?). It's possible that earlier versions of IE would coerce the string to a bool …
1
vote
Why does my website crash in IE?
What version IE? What system xp,vista,what? What antivirus is installed? What add-ins are loaded? Javascript and/or html doesnt normally cause these kinds of crashes.
for what its worth, it …
0
votes
Disable a button on click
You need to be careful that the postback occurs before you disable the button through client script. This is a common gotcha with ajax and input boxes. Disabling an input box prevents the data from …
9
votes
How can I execute Javascript function before Page load?
Without thinking too hard about the direction you're trying to go in, there is a little used tag that is supported by all browsers called NOSCRIPT.
<noscript>
<img src="htt …
1
vote
Javascript: Possible Access To Modified Closure Issue… How To Beat?
Is result.StartingPoint really a primitive type, e.g. an actual Number type? If not, then perhaps what's happening is that you are getting a reference to that object and then the string concatenati …
7
votes
When are javascript functions executed
The function is run when it is encountered. If you want it to run after the page has loaded, the standard method is to hook the onload event of the window. JQuery has great support for this, but le …
1
vote
JavaScript Converting string values to hex
You can use the parseInt function:
var n = parseInt("10", 16); // parse 10 as base 16 (hex).
-Oisin
…
1
vote
JavaScript - How do I call a function from a string name and pass an array object?
I'm not sure what your overall plan is, but you can pass funtions around themselves instead of their names:
function Foo(x, y) {
// do something
}
function Bar(f, a, b) {
// ca …
0
votes
break out of iframe
If the links were HTML, yes. But since the links are embedded in the SWF itself, there is no way to change their targt, AFAIK.
…
