0
votes
valid javascript endless loop
Just a formal answer:
var i = 0;
while (i < 1) {
do something...
if (i < 1) i = 0;
else i = fooling_function(i); // must return 0
}
I think no br …
0
votes
innerHTML manipulation in JavaScript
Set the element's CSS height to 'auto' every time you update innerHTML.
…
7
votes
Hidden Features of JavaScript?
The way JavaScript works with Date() just excites me!
function isLeapYear(year) {
return (new Date(year, 1, 29, 0, 0).getMonth() != 2);
}
This is really "hidde …
1
vote
Rendering suggested values from an ext Combobox to an element in the DOM
You can use plugin for this, since you can call or even override private methods from within the plugin:
var suggested_text_plugin = {
init: function(o) {
o.onTypeAhea …
0
votes
How to get progress from XMLHttpRequest
One solution is still possible without any browser support:
Divide your file into, say, 10 chunks.
Make AJAX uploads of all those chunks sequentially (using callback …
0
votes
Rendering suggested values from an ext Combobox to an element in the DOM
@qui
Ok. I thought you want an extra DOM field (in addition to existing combo field).
But your solution would override a method in the ComboBox c …
0
votes
Best Way to Organize an ExtJS Project
When starting new big project, I decided to make it modular. Usually, in big projects not all modules are used by a particular user, so I load them on demand. F.e., if a project would have 50+ modu …
0
votes
Why is using Javascript eval function a bad idea?
Unless you let eval() a dynamic content (through cgi or input) it is as safe and solid as all other JavaScript in your page.
…
0
votes
Is JavaScript really the best we can do for client scripting?
So what you'd have done with all those Pythons and Rubys in the browser?!
1). Still writing scripted client-side apps? Well, this is nicely done with JavaScript.
2). Writing client- …
0
votes
Why is my javascript function sometimes “not defined”?
I'm afraid, when you add a new method to a Function class (by prtotyping), you actually adding it to all declared functions, AS WELL AS to your copyAraay(). In result your copyArray() function gets …
-1
votes
Javascript String concatenation faster than this example?
Beware of IE bad garbage collector! What do you suppose to do with your array after using? Probably it will get GC'd?
You can gain perfornace on concatenating with joins, and then lose on p …
-1
votes
Javascript callback when IFRAME is finished loading?
You can use observe() method of HTMLElement to set the 'load' handler:
iFrameObj.observe('load', function(e) {....});
Also, I'd suggest to set an inner spanning DI …
1
vote
Java Script 2 D Arrays allocation
If you really like to allocate 100 elements array of a particular structure, you can do following:
arr = [];
for (i=0; i<100; i++) {
arr[i] = {itemA: <value>, …
0
votes
Checking to see if a DOM element has focus.
There are several things in IE, that does the trick:
If focusing element has different z-index - you can quickly set z-index to that of currently focused element (possibly setting …
0
votes
How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?
Do all your work in some closed scope (of object or function).
Then you can safely remove the C++ object when you went out of scope. GC doesn't check pointers for existence of pointed objects. …
