forked from sepnair/jquery-ipv4-text-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Jquery IPV4 input text controller</title>
<meta name="viewport" content="width=device-width; initial-scale=1" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="js/min/jquery.input-ipv4-address-control-1.0.en.min.js"></script>
<link href='css/ipv4.css' rel='stylesheet'>
<style>
.code {border:1px solid #eee; background:#fefefe;padding:16px;margin-bottom:10px;display:table}
</style>
</head>
<body>
It's very Simple to use Jquery IPV4 input text controller! you should just add IPV4 class to you input text box like this<br>
<p class='code'>
html:<br>
<code>
<link href="css/ipv4.css" rel="stylesheet"><br>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script><br>
<script src="js/min/jquery.input-ipv4-address-control-1.0.en.min.js"></script> <br><br>
<input type="text" name="my_ip" class="<b>IPV4</b>">
</code>
</p>
<p class='code'>
output:<br>
<input type='text' name='my_ip' class='IPV4'>
</p>
</body>