Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
   <input type="text" id="txtAutoFill" MaxLength="50" list="autoContent" name="TypeList"/>
 
  <input type="submit" id="btnSubmit" value="Submit" /><br />
</body>
</html>
 
$(function(){
  $(".txtRoom").remove();
  $("#txtAutoFill").on('input',function() {
    var input = parseInt($("#txtAutoFill").val());
    if(typeof(input) == "number"){
    for(var n=1;n<=$("#txtAutoFill").val(); n++) {
      var $i = $("<input />", { 
                  type: "text",
                  id: "txtRoom" + n + "Name",
                  class: "txtRoom"});$("body").append($i);
               }      
    }
    else {
      alert("Please enter a numeric value");
    }
  });
});
Output

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

Dismiss x
public
Bin info
Danishpro
0viewers