javascript:(function(){function toCSV(rows){var newline='\n';var fsep=',';var quot='"';var quotquot=[quot+quot,'\\'+quot][1];var alwaysQuote=false;var quoteIfContainsQuote=true;var lines=[];$.each(rows,function(){var line=[];$.each(this,function(){var s=this;var needsQuote=alwaysQuote;if(s.indexOf(fsep)>=0)needsQuote=true;if(s.indexOf(quot)>=0){needsQuote=needsQuote || quoteIfContainsQuote;s=s.replace(quot,quotquot);}if(needsQuote)s=quot+s+quot;line.push(s);});lines.push(line.join(fsep));});return lines.join(newline);}function xtract(rootTableSelector){var rows=[];var csv=[];csv.push(['Name','Email']);$(rootTableSelector).each(function(){var $t=$(this);var row={};row.name=$.trim($t.find('tr:nth-child(1) > td > b').text());row.email=$.trim($t.find('tr:nth-child(2) > td > div:nth-child(2)').text());rows.push(row);csv.push([row.name,row.email]);});csv=toCSV(csv);$('