Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
$(document).ready(function() {
    $("div#form").append(       
        $("<form/>", {
            action: '#',
            method: 'submit'
        }).append(
            $("<input/>", {
                type: 'text',
                id: 'title',
                name: 'title',
                maxlength: '20',
                placeholder: 'Title of the game'
            }).css({"border": "1px solid #000", "width":"100%", "margin":"10px 15px 10px 0", "padding":"5px"}).attr('required', true)));});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers