Skip to content

Instantly share code, notes, and snippets.

@mhewedy
Created September 23, 2016 18:31
Show Gist options
  • Select an option

  • Save mhewedy/b3f5c54994298d8be3a83ccaf0f6ce9e to your computer and use it in GitHub Desktop.

Select an option

Save mhewedy/b3f5c54994298d8be3a83ccaf0f6ce9e to your computer and use it in GitHub Desktop.
Get employee list from http://stackoverflow.com/company/team (I Like JS & JQUERY )
$('.teams li').map(function(){
var that = $(this);
var o = {};
['name', 'job-title', 'location'].forEach(function(e){
o[e] = that.find('.' + e).text();
});
console.log(o);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment