Created
May 29, 2018 06:40
-
-
Save nothingrealhappen/9008240f85f2f1a22d1f191003259295 to your computer and use it in GitHub Desktop.
Copy jira sprint report tickets content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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