Skip to content

Instantly share code, notes, and snippets.

@nothingrealhappen
Created May 29, 2018 06:40
Show Gist options
  • Save nothingrealhappen/9008240f85f2f1a22d1f191003259295 to your computer and use it in GitHub Desktop.
Save nothingrealhappen/9008240f85f2f1a22d1f191003259295 to your computer and use it in GitHub Desktop.
Copy jira sprint report tickets content
var result = '';
$('table.aui:eq(0)').find('tr').slice(1).each(function() {
const number = $(this).find('td:eq(0)').html();
const title = $(this).find('td:eq(1)').text();
result += `${number}<br>${title}\r<hr />`;
});
$('body').empty().append(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment