Flask-Web-App-Tutorial
Flask-Web-App-Tutorial copied to clipboard
nothing is being deleted. I think smth to do w buttons. The delete button can't be triggered
function deleteNote(noteId) { console.log('deleteNote function called with noteId:', noteId); fetch("/delete-note", { method: "POST", body: JSON.stringify({ noteId: noteId }), }).then((_res) => { window.location.href = "/"; }); }
i tried adding console.log in js nothing happens