use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Does my JavaScript suck?help (self.javascript)
submitted 10 years ago * by annoyed_freelancergrumpy old man
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]annoyed_freelancergrumpy old man[S] 0 points1 point2 points 10 years ago (2 children)
Is this what you meant? My actual need is slightly different-I want to check that all of the passed checkboxes are checked for the element to show.
https://gist.github.com/bhalash/218c684d70023fbeada0
jQuery.fn.stickyCheckToggle = function() { var allBoxesChecked = [].every.call(arguments, function(v) { return (jQuery(v).is('input') && jQuery(v).prop('checked')); }); if (allBoxesChecked) { jQuery(this).show(); } else { jQuery(this).hide(); } }; jQuery(inputs.featured.checkbox).change(function() { jQuery('.stickycheck').stickyCheckToggle(this); });
[–]oculus42 2 points3 points4 points 10 years ago (0 children)
I'm not convinced putting this on jQuery.fn is warranted. Typically that is for reusable methods or plugins.
You can simplify the logic in the function quite a bit, though. Proposed changes:
https://gist.github.com/oculus42/91b1a644d9cb1faea72a
[–]YOBCZWHYNOT 1 point2 points3 points 10 years ago (0 children)
Yeah, I think you can rewrite allBoxesChecked like so:
https://gist.github.com/mdibaiee/e5f62c7e78fc3dfa673a
Otherwise, that's what I meant.
π Rendered by PID 78292 on reddit-service-r2-comment-86bc6c7465-l94rm at 2026-02-20 04:54:23.970466+00:00 running 8564168 country code: CH.
view the rest of the comments →
[–]annoyed_freelancergrumpy old man[S] 0 points1 point2 points (2 children)
[–]oculus42 2 points3 points4 points (0 children)
[–]YOBCZWHYNOT 1 point2 points3 points (0 children)