Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
ffn
on May 9, 2015
|
parent
|
context
|
favorite
| on:
A re-introduction to JavaScript
Whoa, the closure-based circular reference memory leak thing, is that just an IE issue or is that a language level (anti) feature? I need to know because I've very often done something like:
el$ = $('#whatever'); el$.click( function() { el$.find("a").css("color", "red"); } );
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
el$ = $('#whatever'); el$.click( function() { el$.find("a").css("color", "red"); } );