JSFiddle - React, Tailwind, and code Playground
HTML
Skip to content
Features
Business
Explore
Marketplace
Pricing
Search
Sign in or Sign up
Watch 1 Star 3 Fork 2 KirillDZR/bootstrap-ipaddress
Code Issues 0 Pull requests 0 Projects 0 Insights
Dismiss
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Branch: master Find file Copy path bootstrap-ipaddress/demo.html
3891494 on 5 Mar 2015
@KirillDZR KirillDZR Add demo.html
1 contributor
RawBlameHistory
56 lines (54 sloc) 2.08 KB
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Bootstrap IpAddress - demo</title>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap-ipaddress.css">
<script type="text/javascript" src="bootstrap-ipaddress.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function () {
//$('#IpDemo').ipaddress();
$('input[name=ip]').ipaddress();
$('#IpDemo').ipaddress();
});
//]]>
</script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 form-group">
<div class="input-group">
<input type="text" id="ip1" name="ip" class="form-control" value="10.0.2.15" disabled="">
<span class="input-group-btn">
<button class="btn" type="button"><span class="glyphicon glyphicon-cog"></span> </button>
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 form-group">
<div class="input-group">
<input type="text" id="ip2" name="ip" class="form-control" value="10.0.2.15">
...