Skip to content

Instantly share code, notes, and snippets.

@ianalexander
Last active January 6, 2019 23:38
Show Gist options
  • Select an option

  • Save ianalexander/4e4bc84602e6f884d49c50c16da87495 to your computer and use it in GitHub Desktop.

Select an option

Save ianalexander/4e4bc84602e6f884d49c50c16da87495 to your computer and use it in GitHub Desktop.
var a = $('ol.empReviews li.empReview').map(function (){
return [[
$(this).find('span.reviewer').text(),
$(this).find('time.date').text(),
$(this).find('.interviewOutcomes .flex-grid div span:eq(0)').text(),
$(this).find('.interviewOutcomes .flex-grid div span:eq(1)').text(),
$(this).find('.interviewOutcomes .flex-grid div span:eq(2)').text(),
$(this).find('.interviewDetails').text(),
$(this).find('.interviewQuestions span.interviewQuestion').text().replace('Answer Question', '')
]];
}).get();
var b = a.map((e) => e.join('\t')).join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment