Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Add and Remove input field with button"
Bootstrap 4.1.1 Snippet by
Biplab01198
4.1.1
Preview
HTML
View Full Screen
Fork
Fork this
2.9K
 
1 Fav
Post to Facebook
Tweet this
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Add or Remove Input Fields Dynamically using jQuery - MyNotePaper</title> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> </head> <body> <div class="container"style="max-width: 700px;"> <div class="text-center" style="margin: 20px 0px 20px 0px;"> <span class="text-secondary">Add or Remove Input Fields Dynamically using jQuery</span> </div> <form method="post" action=""> <div class="row"> <div class="col-lg-12"> <div id="inputFormRow"> <div class="input-group mb-3"> <input type="text" name="title[]" class="form-control m-input" placeholder="Enter title" autocomplete="off"> <div class="input-group-append"> <button id="removeRow" type="button" class="btn btn-danger">Remove</button> </div> </div> </div> <div id="newRow"></div> <button id="addRow" type="button" class="btn btn-info">Add Row</button> </div> </div> </form> </div> <script type="text/javascript"> // add row $("#addRow").click(function () { var html = ''; html += '<div id="inputFormRow">'; html += '<div class="input-group mb-3">'; html += '<input type="text" name="title[]" class="form-control m-input" placeholder="Enter title" autocomplete="off">'; html += '<div class="input-group-append">'; html += '<button id="removeRow" type="button" class="btn btn-danger">Remove</button>'; html += '</div>'; html += '</div>'; $('#newRow').append(html); }); // remove row $(document).on('click', '#removeRow', function () { $(this).closest('#inputFormRow').remove(); }); </script> </body> </html>
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76