Skip to content

Instantly share code, notes, and snippets.

Created July 29, 2013 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/63b5efe27a1ed6059dbd to your computer and use it in GitHub Desktop.
Save anonymous/63b5efe27a1ed6059dbd to your computer and use it in GitHub Desktop.
Best way to replicate this kind of logic in clojure/clojurescript?
$("input[name='colors[]']").each(function(){
var index=$.inArray($(this).val(),results.colors);
if(index !== -1){
$(this).attr('checked',true);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment