SP/web2py/applications/examples/views/ajax_examples/index.html

14 lines
327 B
HTML
Raw Normal View History

2018-10-25 15:33:07 +00:00
{{extend 'layout.html'}}
<p>Type something and press the button.
The last 10 entries will appear sorted in a table below.</p>
<form>
<INPUT type="text" id="q" name = "q" value="web2py"/>
<INPUT type="button" value="submit"
onclick="ajax('{{=URL('data')}}',['q'],'target');"/>
</form>
<br/>
<div id="target"></div>