1,328 reputation
113
bio website
location
age
visits member for 1 year, 4 months
seen 42 mins ago
stats profile views 90

1h
comment Change DIV text with javascript
I know its not in the spirit of SO but sometimes I just want to scream : en.wikipedia.org/wiki/RTFM
2d
comment using threads unable to get the output as expected
The output you are getting is correct. It is your understanding of thread that is incorrect I am afraid.
May
17
comment Datepicker is causing IE9 to crash onSelect
whats in formatMonths and updateDates?
May
17
comment IE 9 debugger how to get variable value
A call to this will return the calling object, be it the document, or a function, or an object, or something explicitly define by using the call or apply method on a code object. When running j(this) in the console, it will return this object that the console binds to the function, but it will be different then the $(this) found when that same peice of code is run in your script, since in the script, a peice of html calls the code and this returns an object where .closest('.denom') might make sense. That is the cause of the unexpected results.
May
14
answered Strange NullPointer Exception in main
May
14
comment JavaScript: expand div to max height without getting scroll bars
Then it should be $(window).height();. What cases is this not working for you?
May
14
comment jQuery Date Validation (YYYY-MM-DD)
By using a differnent regex?
May
14
comment JavaScript: expand div to max height without getting scroll bars
So are you saying you are having trouble computing the actual displayued height of the window? For instance $('window').getHeightOfViewport()? (If that existed which it doesnt)
May
14
answered unable to execute query using phpmyadmin
May
14
comment JavaScript: expand div to max height without getting scroll bars
Excsue me if im missunderstanding, but once you computed height you would just perform $('canvas').css('height', computedHeight) right?
May
13
comment Array modification in Java (changing array “resolution”)
@hd1 this will not accomplish what Fred was requesting....
May
13
revised Array modification in Java (changing array “resolution”)
deleted 86 characters in body
May
13
revised Array modification in Java (changing array “resolution”)
deleted 86 characters in body
May
13
answered Array modification in Java (changing array “resolution”)
May
10
comment Javascript: Change css child nodes in id
Use JQuery, or the like, especially until you understand java script better. There is a million different way to solve what you are asking all with their own sets of pros and cons and I am having trouble figuring out where to start based off your question alone.
May
10
comment Javascript: Change css child nodes in id
Well to set css for all three at once, use commas to sperate them #tabmenu, #tabmenu li, #tabmenu li a { background: #ACBACF;}
May
9
comment Check if username exists, if so, increment by one
You have a XY problem here. Your ddls should change, you are mis-using your database
May
9
comment Change only the “maincontent” area with JQUERY/Javascript or any other suitable technique
There are multiple ways to accomplish this. Frames, Ajax, Server side files. Take your pick! (ps. don't pick frames, that ones is a bad choice)
May
8
comment Java/Scala Strange behaviour of readline
What does the PathOfScript var contain? Excatly?
May
7
comment What kind of Javascript notation / shortcut is this?
@user2246674 I don't buy it. 1 is just as truthy and 0 is falsey. Try 1||alert('test'); and see what happens. 1 is considered true there. And (!0 == 1) doesnt matter. There is an implict cast to boolean in the || operator so what you are concerned with is toBoolean(!0) === toBoolean(1) which is always true.