File: test.html

package info (click to toggle)
haskell-wai-extra 3.0.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 236 kB
  • ctags: 1
  • sloc: haskell: 2,177; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
  <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
    <script>
      $(function(){
        $.getJSON("/json?callback=?", function(o){
          $("#dest").html(o.data);
        });
      });
    </script>
  </head>
  <body>
    There should be some content loaded below:
    <div id="dest"></div>
  </body>
</html>