techwithtim / Flask-Web-App-Tutorial

Code for the note storing flask web app made during a YouTube video.
918 stars 1.01k forks source link

nothing is being deleted. I think smth to do w buttons. The delete button can't be triggered #156

Open KhantMhueZawWin opened 3 months ago

KhantMhueZawWin commented 3 months ago

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