Wiki source code of Ajax

Last modified by Jean-Vincent Drean on 2011/02/25 14:37

Show last authors
1 {{html clean="false"}}
2 <div id="box">
3 Box content
4 <input type="button" id="updateButton" value="update"/>
5 </div>
6
7 <script type="text/javascript">
8 $('updateButton').observe('click', function(event) {
9 new Ajax.Updater('box', '/xwiki/rest/wikis/xwiki/spaces/XWiki/pages/XWikiPreferences/objects/XWiki.XWikiPreferences/0/properties/colorTheme', {
10   method: 'get',
11   insertion: Insertion.Top
12  });
13 });
14 </script>
15 {{/html}}