<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="container">
<div class="row-fluid">
<form>
<!--/are you interested in social security or veterans disability benefits STEP ONE -->
<div class="row stepOne">
<p><strong>Are you interested in social security or veterans' disability benefits?</strong></p>
<div class="col-sm-4">
<div class="radio">
<label><input type="radio" name="interested" id="interested-one" value="veterans">Veterans'</label>
</div>
</div>
<div class="col-sm-4">
<div class="radio">
<label><input type="radio" name="interested" id="interested-two" value="social-security">Social Security</label>
</div>
</div>
<div class="col-sm-4">
<div class="radio">
<label><input type="radio" name="interested" id="interested-three" value="both">Both</label>
</div>
</div>
</div><!--/row-->
<!-- are you a current client? STEP TWO -->
<div class="row stepTwo">
<p><strong>Are you a current client?</strong></p>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="current" id="current-one" value="current-yes">Yes</label>
</div>
</div>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="current" id="current-two" value="current-no">No</label>
</div>
</div>
</div><!--/row-->
<!-- are you receiving social security disability? STEP THREE -->
<div class="row stepThree">
<p><strong>Are you currently receiving social security disability?</strong></p>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="currentlyReceiving" id="currentlyReceiving-one" value="currentlyReceiving-yes" checked>Yes</label>
</div>
</div>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="currentlyReceiving" id="currentlyReceiving-two" value="currently-receiving-no" checked>No</label>
</div>
</div>
</div><!--/row-->
<!-- are you working more than 10 hours per week? STEP Four-->
<div class="row stepFour">
<p><strong>Are you currently working more than 10 hours per week?</strong></p>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="currentlyWorking" id="currentlyWorking-one" value="currentlyWorking-yes" checked>Yes</label>
</div>
</div>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="currentlyWorking" id="currentlyWorking-two" value="currentlyWorking-no" checked>No</label>
</div>
</div>
</div><!--/row-->
<!-- are you unable to work a full time job because of your disability? STEP FIVE-->
<div class="row stepFive">
<p><strong>Are you currently unable to work a full time job because of your disability?</strong></p>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="unable" id="unableOne" value="unable-yes">Yes</label>
</div>
</div>
<div class="col-sm-6">
<div class="radio">
<label><input type="radio" name="unable" id="unableTwo" value="unable-no">No</label>
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</div><!--/row-->
<!-- customer information -->
<section id="customer-information">
<div class="form-group">
<label for="fname" class="sr-only">First Name</label>
<input type="text" class="form-control" id="fname" placeholder="First Name">
</div>
<div class="form-group">
<label for="lname" class="sr-only">Last Name</label>
<input type="text" class="form-control" id="lname" placeholder="Last Name">
</div>
<div class="form-group">
<label for="phone" class="sr-only">Phone Number</label>
<input type="phone" class="form-control" id="phone" placeholder="Phone Number">
</div>
<div class="form-group">
<label for="email" class="sr-only">Email</label>
<input type="email" class="form-control" id="email" placeholder="Email Address">
</div>
<div class="form-group">
<label for="email" class="sr-only">Email</label>
<textarea class="form-control" id="message" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</section><!--/customer information -->
</form>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</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. |