source: main/trunk/model-sites-dev/pei-jones/script/image-annotator/demo-ajax.html@ 31794

Last change on this file since 31794 was 31794, checked in by kjdon, 7 years ago

more files

File size: 757 bytes
Line 
1<html>
2 <head>
3 <title>Image Annotations</title>
4 <style type="text/css" media="all">@import "css/annotation.css";</style>
5 <script type="text/javascript" src="js/jquery-1.7.1.js"></script>
6 <script type="text/javascript" src="js/jquery-ui-1.8.17.js"></script>
7 <script type="text/javascript" src="js/jquery.annotate.js"></script>
8
9 <script language="javascript">
10 $(window).load(function() {
11 $("#toAnnotate").annotateImage({
12 getUrl: "get.html",
13 saveUrl: "save.html",
14 deleteUrl: "delete.html",
15 editable: true,
16 useAjax: true
17 });
18 });
19 </script>
20 </head>
21 <body>
22 <div>
23 <img id="toAnnotate" src="images/trafalgar-square-annotated.jpg" alt="Trafalgar Square" width="600" height="398" />
24 </div>
25 </body>
26</html>
Note: See TracBrowser for help on using the repository browser.