<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<form onsubmit="return false;">
<label for="name">Your name:</label>
<input type="text" id="name" name="name" /><br />
<label for="job">Are you a student?</label>
<input type="checkbox" id="job" name="job" />
<hr />
<div class="studentquestions">
<h3>Student questions</h3>
<label for="concentration" class="student">Concentration:</label>
<select id="concentration" name="concentration" class="student">
<option>---</option>
<option>Biology</option>
<option>Cartography</option>
<option>Chemistry</option>
<option>Computer Science</option>
<option>Electrical Engineering</option>
<option>Journalism</option>
</select><br />
<label for="distance" class="student">How far do you walk a day?</label>
<select id="distance" name="distance" class="student">
<option>---</option>
<option>< 0.5 miles</option>
<option>< 1 mile</option>
<option>< 1.5 miles</option>
<option>< 2 miles</option>
<option>< 3 miles</option>
<option>< 4 miles</option>
<option>>= 4 miles</option>
</select><br />
<label for="reason" class="student">Does that make you tired?</label>
<input type="text" id="reason" name="reason" class="student" />
</div>
<hr />
<div id="nonstudentquestions">
<h3>Non-student questions</h3>
<label for="dust">Does your job have you interact with dust?</label>
<input type="checkbox" id="dust" name="dust" class="nonstudent" /><br />
<label for="computer">Do you use a desktop computer for your work? (> 35% time)</label>
<input type="checkbox" id="computer" name="computer" class="nonstudent" /><br />
<label for="reason">Do you like your job?</label>
<input type="text" id="jobreason" name="jobreason" class="nonstudent" />
</div>
<hr />
<h3>Conclusion</h3>
<label for="likert">Please rate your ability to skip wildly down the street:</label>
<input type="range" min="1" max="7" step="1" value="3.5" id="likert" name="likert" /><br />
Thank you for filling out this form!<br />
<button type="submit">Submit form!</button>
</form>
</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. |