1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
3 | <head> |
---|
4 | <script src="http://code.jquery.com/jquery-latest.js"></script> |
---|
5 | <script type="text/javascript"> |
---|
6 | //<![CDATA[ |
---|
7 | |
---|
8 | $(document).ready( function(){ |
---|
9 | |
---|
10 | $.get("routen.xml", function(d){ |
---|
11 | |
---|
12 | $(d).find('test').each( function(i){ |
---|
13 | |
---|
14 | $('#container').append( $(this).text()+"<br />" ); |
---|
15 | |
---|
16 | }); |
---|
17 | |
---|
18 | }); |
---|
19 | |
---|
20 | }); |
---|
21 | |
---|
22 | //]]> |
---|
23 | </script> |
---|
24 | </head> |
---|
25 | <body> |
---|
26 | |
---|
27 | <div id="container"> |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | </div> |
---|
32 | |
---|
33 | </body> |
---|
34 | </html> |
---|