Skip to content

Instantly share code, notes, and snippets.

@mklabs
Created October 13, 2010 13:03
Show Gist options
  • Save mklabs/623989 to your computer and use it in GitHub Desktop.
Save mklabs/623989 to your computer and use it in GitHub Desktop.
// 8: how could you rewrite the following code to make it shorter?
(function(d, $){
$('li.foo a').attr('title', 'i am foo');
$('li.bar a').attr('title', 'i am bar');
$('li.baz a').attr('title', 'i am baz');
$('li.bop a').attr('title', 'i am bop');
})(dojo, dojo.query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment