| bio | website | |
|---|---|---|
| location | Granby, CT | |
| age | 33 | |
| visits | member for | 2 years, 10 months |
| seen | yesterday | |
| stats | profile views | 46 |
I've enjoyed and tinkered with Web Technologies since my junior year in college, back in 2000. I decided to make it a career in 2003, and by 2006 I had a job working on any of over 60 websites. I've come a long way and learned a lot, but still have a long way to go!
|
Jun 9 |
comment |
Changed HTML, now child inputs are not accessible in each() Source order doesn't really matter in this case - it's execution order that's important. Unless the second snippet runs after the change event executes, then it won't affect any new elements. It has to RUN after the new elements are created. |
|
May 17 |
comment |
How to detect zoom level with javascript on android 2.2 browser I don't have an answer for you, but I can say that this isn't working because of how Android handles window.innerWidth (see this quirksmode post: quirksmode.org/mobile/tableViewport.html#t01). If I find a solution, I'll be sure to share it. |
|
May 17 |
comment |
Getting the zoom level (pinch) on Android 2.2 mobile browser webview I'm currently looking into this as well. Apparently this is due to the way Android 2 reports innerHeight, and is documented here: quirksmode.org/mobile/tableViewport.html#t01 If I find a solution, I'll be sure to let you know! |
|
May 9 |
comment |
How to trigger javascript on print event? Additionally, if you are trying to alter the layout or display for print, you should be doing this with a print stylesheet (or @media print rules within your css) and not JavaScript |
|
Apr 26 |
answered | Loading addthis via async plugin |
|
Apr 25 |
comment |
Two ID's in jQuery selector not working Ok, I see. Thanks for the clarification. The selector doesn't decide when to execute the function, but instead it runs the function, using the collection from the selector as this. |
|
Apr 25 |
comment |
Two ID's in jQuery selector not working Why not just $('#my_id_2').my_function();? |
|
Apr 25 |
comment |
why there is a '!' before 'function($){}(window.jQuery)'? It actually doesn't cause it to be evaluated... that's done by the parenthesis at the end. It is just a way of indicating that it is invoked immediately. It is for better readability (same as the parenthesis around the entire function) |
|
Apr 24 |
answered | Using JSON data in Jquery to populate text boxes |
|
Apr 24 |
answered | Is there any way to give this sharp property for custom font in css file or else? |
|
Apr 20 |
answered | How to show ellipsis through css in this html markup |
|
Apr 14 |
comment |
Break a div into two parts and display half below a fixed div and half above Oh, and I forgot that position:fixed isn't really supported, which is more likely the cause of your problems. See caniuse.com/#search=fixed for reference |
|
Apr 14 |
comment |
Break a div into two parts and display half below a fixed div and half above As I understand it, the ios devices don't fire their 'onscroll' event until after the scroll is finished. That might be the issue, but I didn't really look too deep into it. |
|
Apr 14 |
answered | CSS: Centering a content with fixed position |
|
Apr 14 |
revised |
Break a div into two parts and display half below a fixed div and half above Removed untrue statement about the current code |
|
Apr 14 |
answered | Break a div into two parts and display half below a fixed div and half above |
|
Apr 10 |
comment |
Is there an equivalent of 'which' on windows? I needed a solution for Windows XP, and this did the trick. Thanks! |
|
Apr 5 |
comment |
Remove CSS class from element with JavaScript (no jQuery) @dzhioev - I believe because it is relatively new and not supported in older browsers (IE support starts at IE10) |
|
Apr 4 |
answered | Automatic tool for checking code conventions for C/C++ |
|
Mar 9 |
revised |
Regex pattern php? add ignore case flag |