php

Form Repeater using HTML CSS JQuery

In this tutorial we are going to teach Form Repeater using HTML CSS JQuery.step by step.this is very importent when you have the inventory managment system and stock managment system projects

Html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Form Repeater</title>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">

    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">

</head>
<body>
    <div class="container mt-5">
        <h2>Form Repeater Example</h2>
        <form id="repeaterForm">
            <div id="repeaterContainer">
                <div class="form-group repeater-item">
                    <div class="row">
                        <div class="col-md-5">
                            <input type="text" name="name[]" class="form-control" placeholder="Product Name">
                        </div>
                        <div class="col-md-5">
                            <input type="number" name="qty[]" class="form-control" placeholder="Qty">
                        </div>
                        <div class="col-md-2">
                            <button type="button" class="btn btn-danger remove-item">Remove</button>
                        </div>
                    </div>
                </div>
            </div>
            <button type="button" id="addItem" class="btn btn-primary mt-3">Add Item</button>
            <button type="submit" class="btn btn-success mt-3">Submit</button>
        </form>
    </div>

    <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
    <script src="script/form-repeater.js"></script>
</body>
</html>

Query

$(document).ready(function() {
    // Add new item
    $('#addItem').click(function() {
        var newItem = `
            <div class="form-group repeater-item">
                <div class="row">
                    <div class="col-md-5">
                        <input type="text" name="name[]" class="form-control" placeholder="Name">
                    </div>
                    <div class="col-md-5">
                        <input type="number" name="qty[]" class="form-control" placeholder="Qty">
                    </div>
                    <div class="col-md-2">
                        <button type="button" class="btn btn-danger remove-item">Remove</button>
                    </div>
                </div>
            </div>
        `;
        $('#repeaterContainer').append(newItem);
    });

    // Remove item
    $(document).on('click', '.remove-item', function() {
        $(this).closest('.repeater-item').remove();
    });

    // Form submission
    $('#repeaterForm').submit(function(event) {
        event.preventDefault();
        var formData = $(this).serialize();
        console.log('Form Data:', formData);
 
    });
});

I attached the video below How to make this System

 

admin

Recent Posts

Create Professional Login & Registration Form using HTML & CSS

In this tutorils we are going to teach how to make a attractive Login &…

2 weeks ago

AJAX CRUD Application in Laravel 11

Introduction to AJAX and Laravel 11 AJAX, which stands for Asynchronous JavaScript and XML which…

4 weeks ago

C#.net Banking Project: Accurate FD Rate Calculation Tutorial

Introduction to FD Rate Calculation In any banking project, accurately calculating Fixed Deposit (FD) rates…

1 month ago

Creating Calculator in WPF with C# – Step-by-Step Tutorial

In this tutorials will teach how to make a calculator using wpf C# application step…

1 month ago

Laravel 11 API Passport Authentication

Introduction to Laravel 11 API Passport Authentication Laravel 11 provides a world best framework for…

1 month ago

Java Banking Project: Accurate FD Rate Calculation Tutorial

Introduction to FD Rate Calculation In any banking project, accurately calculating Fixed Deposit (FD) rates…

1 month ago