Skip to content

Instantly share code, notes, and snippets.

@brianpetro
Last active August 18, 2016 16:55
Show Gist options
  • Save brianpetro/b8bcd79bb50d1025cb0fcd098185644c to your computer and use it in GitHub Desktop.
Save brianpetro/b8bcd79bb50d1025cb0fcd098185644c to your computer and use it in GitHub Desktop.
jquery to angularjs snippet 1
// this one
$('.navi li:first-child').css('background-color', 'yellow');
// Also this one
$('.navi li').on('click', function(e){
// what does ‘this’ refer to?
$(this).css('background-color', 'green');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment