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 & Remove Product Attributes 2"
Bootstrap 3.3.0 Snippet by
falvarez1
3.3.0
jQuery
Preview
HTML
JS
View Full Screen
Fork
Fork this
7.1K
 
6 Fav
Post to Facebook
Tweet this
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <h3>Product Attributes</h3> <small>Press <span class="glyphicon glyphicon-plus gs"></span> to add another Product Attribute</small> <form role="form" autocomplete="off"> <table class="table table-bordered table-striped"> <thead> <tr> <th style="width: 300px;">Label</th> <th >Description</th> <th class="text-center" style="width: 90px;"> <button type="button" class="btn-add btn btn-success btn-xs"><span class="glyphicon glyphicon-plus"></span></button> </th> </tr> </thead> <tbody class="container-items tableForm"> <tr class="controls"> <td class="vcenter"> <div class="form-group required"> <input type="text" class="form-control" name="attrLabel[]" placeholder="Product Attribute Description" maxlength="255"><p class="help-block help-block-error"></p> </div> </td> <td> <div class="form-group required" > <textarea class="form-control" rows="5" name="attrDesc[]" placeholder="Product Attribute Description"></textarea> </div> </td> <td class="text-center vcenter" style="width: 90px; "> <button type="button" class="btn-remove btn btn-danger btn-xs"><span class="glyphicon glyphicon-minus"></span></button> </td> </tr> </tbody> </table> </form> </div> </div>
$(function() { $(document).on('click', '.btn-add', function(e) { //alert("Adding control"); e.preventDefault(); var controlForm = $('form:first .tableForm'), currentEntry = controlForm.find('.controls:first'), newEntry = $(currentEntry.clone()).appendTo(controlForm); newEntry.find('.form-control').val(''); }).on('click', '.btn-remove', function(e) { var thisControl = $(this).parents('tr.controls'); //if(!thisControl.is(':first-child')) if(thisControl.siblings().size() > 0) thisControl.remove(); else alert('Cannot remove the default'); e.preventDefault(); return false; }); });
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76