<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="container" style="margin-bottom:70px;">
<nav class="navbar">
<div class="navbar-brand">
<a class="navbar-item" href="/">
My nice app
</a>
<a class="navbar-item is-hidden-desktop" href="https://github.com/RuinSain" target="_blank">
<span class="icon" style="color: #333;">
<i class="fa fa-github"></i>
</span>
</a>
<div class="navbar-burger burger" onclick="document.querySelector('.navbar-menu').classList.toggle('is-active');">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a href="/archive" class="nav-item is-tab">All Articles</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link " href="http://bulma.io/blog/">
Blog
</a>
<div class="navbar-dropdown " data-style="width: 18rem;">
<a class="navbar-item" href="/2017/03/10/new-field-element/">
<div class="navbar-content">
<p>
<small class="has-text-info">10 Mar 2017</small>
</p>
<p>New field element (for better controls)</p>
</div>
</a>
<a class="navbar-item" href="/2016/04/11/metro-ui-css-grid-with-bulma-tiles/">
<div class="navbar-content">
<p>
<small class="has-text-info">11 Apr 2016</small>
</p>
<p>Metro UI CSS grid with Bulma tiles</p>
</div>
</a>
<hr class="navbar-divider">
<div class="navbar-item">
<div class="navbar-content">
<div class="level is-mobile">
<div class="level-left">
<div class="level-item">
<strong>Stay up to date!</strong>
</div>
</div>
<div class="level-right">
<div class="level-item">
<a class="button is-rss is-small" href="http://bulma.io/atom.xml">
<span class="icon is-small">
<i class="fa fa-rss"></i>
</span>
<span>Subscribe</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="/register">
</a>
<a class="navbar-item" href="/login">
Login
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">User</a>
<div class="navbar-dropdown">
<a href="#" class="navbar-item">My Profile</a>
<a href="#" class="navbar-item"
">Logout</a>
<form id="logout-form" action="" method="#" style="display: none;"></form>
</div>
</div>
</div>
</div>
</nav>
</div>
</body>
</html>
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. |