77,662 reputation
469127
bio website cv.zerkms.com
location Wellington, New Zealand
age 28
visits member for 3 years, 4 months
seen 8 mins ago
stats profile views 6,644

Yet another software developer

http://cv.zerkms.com/


1h
comment Format currency in all input scenarios
@alfasin: I'd say "commas and dots with a space" (nice idea though)
1h
comment Format currency in all input scenarios
1.234.00 --- what's this? A version number?
2h
comment Twitter Like, then share! Javascript
Unfortunately solving this issue requires you to program and read twitter API documentation.
2h
comment Confused with set timeout
@phenomnomnominal: at the moment all the 3 arguments will always be of an undefined value
2h
comment Confused with set timeout
@Dave: if you followed the documentation link I gave in the question comments - developer.mozilla.org/en-US/docs/Web/API/window.setTimeout - you would know it yourself ;-) PS: there are 2: clearInterval() and clearTimeout() correspondingly
2h
comment Confused with set timeout
@phenomnomnominal: you could even return an interval reference from timeout_begin (to make an interface a bit more clear)
2h
comment Confused with set timeout
@Dave: yep .....
2h
comment Confused with set timeout
@Dave: JS is a single-threaded programming language, and the calls will be queued (it's a bit more complicated, but in this case it's all what you need to know) PS: how it actual works: ejohn.org/blog/how-javascript-timers-work
3h
comment Confused with set timeout
@Dave: hehe, have you checked documentation? ;-)
3h
comment Confused with set timeout
what "does not run" means?
3h
comment Confused with set timeout
How would you implement "what"? "and then thats it" --- it's not a error explanation
4h
comment How to select all classes inside a class with jQuery selector
@sephiith: it's really weird :-) I'm sure if you explained your original task we could provide a better solution.
4h
comment How to select all classes inside a class with jQuery selector
@sephiith: I'm missing your point. What is the formal criteria to select div class="link1" and to skip div class="random"?
5h
comment How to select all classes inside a class with jQuery selector
@sephiith: what is "the class inside the class inside .content"? There are only DOM nodes in the DOM tree
5h
comment How to select all classes inside a class with jQuery selector
@sephiith: what is "any class"?
5h
answered How to select all classes inside a class with jQuery selector
5h
comment Javascript: reload page at specified time
@foosion: there is no any problem. Just calculate a correct interval and use it with setInterval
6h
comment Javascript: reload page at specified time
Actually it makes no sense to use setInterval here, but setTimeout
6h
comment Javascript: reload page at specified time
@foosion: console.log(varname); and look at the console. "I think" --- in programming it's common to follow the facts, not beliefs
6h
comment Javascript: reload page at specified time
@foosion: what do you think targetDate equals to? Have you checked it? Where myDate comes from?