<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class=table-data>
<table>
<tr style="background-color:green; color:white;">
<th>Fields</th>
<th>Record1</th>
<th>Record2</th>
<th>Record3</th>
<th>Record4</th>
<th>Record5</th>
<th>Record6</th>
<th>Record7</th>
<th>Record8</th>
</tr>
<tr>
<td>Name:</td>
<td>Name 1</td>
<td>Name 2</td>
<td>Name 3</td>
<td>Name 4</td>
<td>Name 5</td>
<td>Name 6</td>
<td>Name 7</td>
<td>Name 8</td>
</tr>
<tr>
<td>Email:</td>
<td>Email 1</td>
<td>Email 2</td>
<td>Email 3</td>
<td>Email 4</td>
<td>Email 5</td>
<td>Email 6</td>
<td>Email 7</td>
<td>Email 8</td>
</tr>
<tr>
<td>Address:</td>
<td>Address 1</td>
<td>Address 2</td>
<td>Address 3</td>
<td>Address 4</td>
<td>Address 5</td>
<td>Address 6</td>
<td>Address 7</td>
<td>Address 8</td>
</tr>
</table>
</div>
</body>
</html>
.table-data
{
background:#f6f6f6;
overflow-x:scroll;
overflow-y:visible;
margin-left:5em;
width: 60%;
}
table{border-collapse:separate; table-layout:fixed;}
table th td{padding:5px; width:100px;}
table td{border:1px solid gray;}
table td:not(:first-child)
{background:#f6f6f6;overflow-x:scroll; }
table td:not(:first-child):hover
{background:red;overflow-x:scroll;}
table td:first-child, table th:first-child{
position:absolute;
width:5em;
left:0;
top:auto;
background:cyan;
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |