5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<title>Test</title>
<head>
<script src="/js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery().ready(function() {
$("a.click").click(function() {
$.ajax({
type: 'GET',
url: 'test2.html',
dataType: 'html',
global: 'false',
success: function(html) {
$("#test").html(html);
/* DOM manipulieren*/
}
});
return false;
});
$("#funktionstest").click(function() {
alert("Funktioniert!");
});
});
</script>
</head>
<body>
<div id="test"></div>
<a href="#">Seite einfügen</a></li>
</body>
</html>
1
2
3
4
5
function Handlers() {
$("#images").load(this.href, Handlers);
}
$(document).ready(Handlers);
5 Einträge, 1 Seite |