Skip to content

Instantly share code, notes, and snippets.

Created March 20, 2018 09:53
Show Gist options
  • Save anonymous/34b87adbcc226ab6b358ca4026b6cd15 to your computer and use it in GitHub Desktop.
Save anonymous/34b87adbcc226ab6b358ca4026b6cd15 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Untitled</title>
</head>
<body>
<button>click me</button>
<div id="tableWrap">
<table>
<thead>
<tr><th>A</th><th>B</th><th>C</th></tr>
</thead>
<tbody>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>1</td><td>2</td><td>3</td></tr>
</tbody>
</table>
</div>
</body>
</html>
$(function(){
$('button').click(function(){
var url='data:application/vnd.ms-excel,' + encodeURIComponent($('#tableWrap').html())
location.href=url
return false
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment