"Filtered Attendees List"
Bootstrap 3.1.0 Snippet by drgnlover

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="items col-xs-12 col-sm-6 col-md-6 col-lg-6 clearfix">
<div class="info-block block-info clearfix">
<div class="square-box pull-left">
<i class="fa fa-user fa-5x"></i>
</div>
<h5>Company Name</h5>
<h4>Name: Tyreese Burn</h4>
<p>Title: Manager</p>
<span>Phone: 555-555-5555</span>
<span>Email: sample@company.com</span>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
.info-block
{
border-right:5px solid #E6E6E6;margin-bottom:25px
}
.info-block .square-box {
width: 15%;
margin-right: 15px;
text-align: center!important;
background-color: #676767;
padding: 20px 0;
}
.info-block.block-info
{
border-color:#20819e
}
.info-block.block-info .square-box
{
background-color:#20819e;color:#FFF
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
$(function() {
$('#input-search').on('keyup', function() {
var rex = new RegExp($(this).val(), 'i');
$('.searchable-container .items').hide();
$('.searchable-container .items').filter(function() {
return rex.test($(this).text());
}).show();
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: