Dinamic resizing of content not working on smart wizard plugin
Advertisements consider the following jquery function: $(document).ready(function () { $(‘#add-product’).click(function () { $(“<div class=’row’> <div class=’col’> <div class=’form-group’><input type=’text’ class=’form-control products’ placeholder=’Product name’> </div> </div> </div>”).appendTo($(‘.products’)) }) $(‘.tab-content’).height(‘100%’) }) <script src=”https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <button id=’add-product’> click me </button> <div class=’products’> </div> the previous appends an input field inside the .tab-content, it works but the size of the… Read More Dinamic resizing of content not working on smart wizard plugin