batch readme
This commit is contained in:
11
Praktikum1/webteams/content/webteams.js
Normal file
11
Praktikum1/webteams/content/webteams.js
Normal file
@ -0,0 +1,11 @@
|
||||
function confirmDelete_p (event_opl) {
|
||||
if ((event_opl.target.tagName.toLowerCase() == 'a') && (event_opl.target.className == "clDelete")) {
|
||||
// Klick auf Link zum Löschen
|
||||
// Ihre Ergänzung
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = function () {
|
||||
let body_o = document.getElementsByTagName('body')[0];
|
||||
body_o.addEventListener('click', confirmDelete_p, false);
|
||||
}
|
Reference in New Issue
Block a user