Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Coupons List on Cart Page sample

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
      $("ul").append("<li>new item <a href='javascript:void(0);' class='del'>&times;</a></li>"); 
      });
 
    $(document).on("click", "a.del" , function() {
        $(this).parent().remove();
    });
});
</script>
</head>
<body>
    <button>Add</button>
    <p>Click the above button to dynamically add new list items. You can remove it later.</p>
    <ul>
        <li>item1 <a href='javascript:void(0);' class='del'>remove</a>
        <a href='javascript:void(0);' class='add'>add</a>
        </li>
        <li>item2 <a href='javascript:void(0);' class='del'>remove</a>
        <a href='javascript:void(0);' class='add'>add</a>
        </li>
        <li>item3 <a href='javascript:void(0);' class='del'>remove</a>
        <a href='javascript:void(0);' class='add'>add</a>
        </li>
        <li>item4 <a href='javascript:void(0);' class='del'>remove</a>
        <a href='javascript:void(0);' class='add'>add</a>
        </li>
        <li>item5 <a href='javascript:void(0);' class='del'>remove</a>
        <a href='javascript:void(0);' class='add'>add</a>
        </li>
    </ul>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.