| bio | website | |
|---|---|---|
| location | United States | |
| age | 29 | |
| visits | member for | 2 years, 3 months |
| seen | May 17 at 22:29 | |
| stats | profile views | 20 |
|
May 13 |
answered | Javascript: How to check if element is visible? |
|
Mar 24 |
comment |
Express connect session expiry not working as expected I am experiencing the same problem. Although it refreshes the maxage value with touch it does not actually send a header to the browser to refresh the cookie. Did you ever figure out the problem? |
|
Mar 18 |
comment |
iScroll 4 not working with form <select> element iPhone Safari and Android browser I just added the onBeforeScrollStart code you have and it works great. Selected answer had unwanted side effects. Thanks. |
|
Feb 6 |
answered | Enabling autocompletion in WebStorm for node.js modules installed via npm |
|
Feb 2 |
awarded | Yearling |
|
Jan 31 |
awarded | Notable Question |
|
Jan 12 |
awarded | Self-Learner |
|
Jan 2 |
awarded | Guru |
|
Sep 4 |
awarded | Popular Question |
|
Aug 17 |
comment |
Pro Javascript Design Patterns errata? This is what the book was looking to show by having a privileged static method, but went quite wrong with their example. Thanx for this. |
|
Aug 8 |
comment |
node.js running alongside Apache PHP? What about the same origin policy? You wont be able to make calls to a different port using socket io, no? |
|
May 19 |
comment |
What percentage of browsers have Google's cached version of JQuery already loaded? As said above this is very misleading. The test conducted by yahoo was: "users’ cache behavior related to a new component (an image)" which obviously is no where near comparable to the percentage of browsers that will have jquery from the google cdn. |
|
May 15 |
comment |
Chrome JavaScript Debugging - how to save break points between page refresh or break via code? This is the best answer, thanx. |
|
Apr 29 |
comment |
How to remove scrollbars from Facebook iFrame application @twig I do not know if you have ever tested it on facebook before but the problem is that even if you do set the width (which I always do) I dont know the height and that is what the facebook javascript takes care of. If you refresh your app many times there will be a few times where scrollbars will show for a split second and then go away. This happens rarely like once every 10 refreshes but it happens. The only fix is the overflow hidden. I tried your way when I first started with facebook apps since it was the logical thing to do but it just does not work smoothly 100% of the time that way. |
|
Apr 22 |
accepted | PHP ternary statement using 'and' |
|
Apr 22 |
comment |
PHP ternary statement using 'and' thanks for the answer, you where 1 sec later than Radu :P |
|
Apr 22 |
comment |
PHP ternary statement using 'and' Now that just makes no sense on why they did that... now I realize that using $one and $two || $three for example is not the same as $one && $two || $three. Thanks for this. |
|
Apr 22 |
asked | PHP ternary statement using 'and' |
|
Apr 22 |
revised |
How to remove scrollbars from Facebook iFrame application corrected spelling |
|
Apr 22 |
comment |
How to remove scrollbars from Facebook iFrame application @twig that is the whole point, you don't want the vertical scrollbars to ever show so it doesnt look like an i-frame but something embedded in the facebook page. The point of the setAutoResize is to resize your i-frame so it doesn't need scrollbars. |