This repository has been archived by the owner on Aug 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 2.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>jQuery PoloPlugins</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="polosson">
<link href="vendor/bootstrap.min.css" rel="stylesheet" />
<script src="vendor/jquery-2.0.1.min.js"></script>
<script src="vendor/bootstrap.min.js"></script>
</head>
<body style="overflow-y: scroll;">
<div class="container-fluid">
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-10 alert alert-warning">
<h2>JQuery Polo Plugins</h2>
<a class="btn btn-primary" href="message.html">jquery.messageBox.js</a>
<a class="btn btn-primary" href="form.html">jquery.ajaxPostForm.js</a>
<a class="btn btn-primary" href="table.html">jquery.ajaxActions.js</a>
</div>
</div>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-10">
<p style="font-size: 1.2em;">
These few jquery plugins are designed to easily work with "ajax actions".<br />
Basically, a set of buttons in a table, that should send POST requests to a server automagically...
But also forms with many inputs, textarea or select that you'd like to treat with ajax, in one line of code ;)
</p>
<hr />
<h2><a href="message.html">jquery.messageBox.js</a></h2>
<h4>Jquery utility to display messages in a div</h4>
<hr />
<h2><a href="form.html">jquery.ajaxPostForm.js</a></h2>
<h4>Jquery plugin to send form via ajax POST</h4>
<hr />
<h2><a href="table.html">jquery.ajaxActions.js</a></h2>
<h4>Jquery plugin to handle actions with ajax POST</h4>
<hr />
<img src="https://licensebuttons.net/l/by-sa/3.0/88x31.png" />
All the code in this git repo is released under <a href="http://creativecommons.org/licenses/by-sa/3.0/legalcode">CC-BY-SA 4.0 license</a>.<br />
You can copy, redistribute and modify the code for any purpose, even commercially, provided you cite the name of the original author.<br />
<b>By Polosson (February 2015).</b>
</div>
</div>
</div>
</body>
</html>