"Price Table with Hidden (Clickable) Form."
Bootstrap 3.3.0 Snippet by jskrishna

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<h1 style="text-align:center;">Hi guys, Please click to <strong>Join</strong> and see that what is it.</h1>
<br><br>
<div class="sub_table">
<div class="container">
<div class="row">
<div class="table_title">
<p>Step One</p>
<hr>
<h1>Choose Your Plan</h1>
</div>
<div class="col-sm-3 col-md-3 col-xs-12">
<div class="box-1 center">
<div class="panel panel-success panel-pricing">
<div class="panel-heading">
<h3>1 Month</h3>
</div>
<div class="panel-body text-center">
<p><strong>$100</strong></p>
</div>
<ul class="list-group text-center">
<li class="list-group-item"><strong>10</strong><br>
Fidelity Point</li>
</ul>
<div class="panel-footer"> <a class="btn btn-lg btn-block btn-success" id="join1">JOIN</a> </div>
</div>
</div>
</div>
<div class="col-sm-3 col-md-3 col-xs-12">
<div class="box-1 center">
<div class="panel panel-success panel-pricing">
<div class="panel-heading">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);
body{font-family: 'Raleway', sans-serif;}
.table_title h1, .table_title p {
text-align: center;
}
.table_title > p {
font-size: 21px;
}
.table_title > hr {
border-color: #e3e3e3;
border-width: 3px;
max-width: 3%;
width: 100%;
}
.table_title h1, .table_title p {
text-align: center;
}
.table_title > h1 {
font-size: 33px !important;
}
.center {
text-align: center;
}
.panel-success {
border: 1px solid #ffd3b4;
}
.panel-success > .panel-heading {
background: #f05f40 none repeat scroll 0 0;
color: #fff;
padding: 10px 15px;
}
.panel-body {
padding: 15px;
}
.panel-body.text-center > p {
margin-bottom: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$(document).ready(function(e) {
$("#form_div, #form_div1").hide();
$("#join1").click(function(){
$("#form_div, #form_div1").toggle( "slow" );
});
$("#join2").click(function(){
$("#form_div, #form_div1").toggle( "slow" );
});
$("#join3").click(function(){
$("#form_div, #form_div1").toggle( "slow" );
});
$("#join4").click(function(){
$("#form_div, #form_div1").toggle( "slow" );
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: