Chris Schetter
Member since Sep 3, 2013
- Profile: /members/11208-chris-schetter.htm
- URL: http://keekerdc.com/
- Comments: 3
Recent Blog Comments By Chris Schetter
-
Most CSS Floats Can Be Replaced With Relative And Absolute Positioning
Posted on Oct 2, 2013 at 10:06 AM
Where your caveat most certainly would apply is the floating of elements further down a containing element, most commonly seen when needing to offset some sort of call-out box amongst body paragraphs. Example in the wild: http://www.npr.org/blogs/thetwo-way/2013/10/02/228396228/shutdown-solution-t... read more »
-
Giving My ColdFusion Components And My JavaScript Components The Same Structure
Posted on Sep 3, 2013 at 3:26 PM
@Ben, This jsbin illustrates two major reasons why following prototypical patterns should be preferred in all but the most specialized of special scenarios: http://jsbin.com/oKUzowo/4/edit (Open the console tab at top, and then reload to see what the script logs.) The biggest gain in memory u... read more »
-
Giving My ColdFusion Components And My JavaScript Components The Same Structure
Posted on Sep 3, 2013 at 1:40 PM
The memory and performance penalties for working around prototypical conventions are more pronounced than you let on in this post. In particular on the v8 engine used in Chrome, this approach would also negate the memory lookup and management gains the engine provides through its 'hidden class' mec... read more »