umzug auf gitea

This commit is contained in:
hwd
2018-04-11 22:17:21 +02:00
parent 4c8459ac31
commit afadb05774
1755 changed files with 534624 additions and 0 deletions

23
js/test2.js Normal file
View File

@@ -0,0 +1,23 @@
$(document).ready( function() {
console.log("loaded ...");
$("#btn").click( function() {
var html = '<p id="p1">Das ist Paragraph p1</p> \
<p id="p2">Das ist Paragraph p2</p> \
<p id="p3">Das ist Paragraph p3</p>';
$('#content').html(html);
});
$('p1').click( function() {
console.log("p1 clicked");
});
$("body").delegate( "#p1", "click", function() {
console.log("p1.delegate");
});
});