This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<HTML> | |
<HEAD></HEAD> | |
<BODY> | |
<!-- doesn't work!!! <a href="" onclick='onDelete("http://localhost:3000/books/delete/1")'> Delete</a> --> | |
<button onclick='onDelete("http://localhost:3000/books/delete/1")'> Delete</button> | |
<SCRIPT> | |
function onDelete(url) { | |
var dialog = confirm("Are you sure you want to delete this book?"); | |
if(dialog) { |
OlderNewer