"Animation (hanging animation)"
Bootstrap 3.3.0 Snippet by rahibhasan

<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="input_fields_wrap"> <button class="add_field_button">Add More Fields</button> <div> <table> <tr> <td>Subject Code</td> <td>Subject Name</td> <td>Subject Credit</td> <td>Theory Credit </td> </tr> <tr> <td><input type="text" name="mytext[]"></td> <td><input type="text" name="mytext[]"></td> <td><input type="text" name="mytext[]"></td> <td><input type="text" name="mytext[]"></td> </tr> </table> </div> </div>
$(document).ready(function() { var max_fields = 10; //maximum input boxes allowed var wrapper = $(".input_fields_wrap"); //Fields wrapper var add_button = $(".add_field_button"); //Add button ID var x = 1; //initlal text box count $(add_button).click(function(e){ //on add input button click e.preventDefault(); if(x < max_fields){ //max input box allowed x++; //text box increment $(wrapper).append('<div><input type="text" name="mytext[]"/><input type="text" name="mytext[]"/><input type="text" name="mytext[]"/><input type="text" name="mytext[]"/><a href="#" class="remove_field">Remove</a></div>'); //add input box } }); $(wrapper).on("click",".remove_field", function(e){ //user click on remove text e.preventDefault(); $(this).parent('div').remove(); x--; }) });

Related: See More


Questions / Comments: