Ignore:
Timestamp:
02/02/23 23:05:16 (17 months ago)
Author:
Gjoko Kostadinov <gjoko.kostadinov@…>
Branches:
master
Children:
a436340
Parents:
9280859
Message:

Add search button functionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/static/js/homepage.js

    r9280859 rcc52b09  
    155155        ],
    156156    });
     157    $("#search").click(function () {
     158        alert("qweqew");
    157159
     160        $.ajax({
     161            url: "http://localhost:8080/events"
     162        }).then(function(data) {
     163            console.log(data);
     164        });
     165    });
    158166
    159167});
     168
     169function search() {
     170
     171}
Note: See TracChangeset for help on using the changeset viewer.