"purchase links"
Bootstrap 3.2.0 Snippet by olliex

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="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 id="DIV_1">
<div id="DIV_2">
<div id="DIV_3" class="purchase-links">
<ul id="UL_4" class="nav">
<li id="LI_5">
<a href="#money-back" id="A_6" data-toggle="pill">Money back guarantee</a>
</li>
<li id="LI_7">
<a href="#unlimited-sites" id="A_8" data-toggle="pill">Unlimited sites</a>
</li>
<li id="LI_9">
<a href="#friendly-support" id="A_10" data-toggle="pill">Friendly support</a>
</li>
<li id="LI_11">
<a href="#faq" id="A_12" data-toggle="pill">Frequently Asked Questions</a>
</li>
</ul>
</div>
</div>
<div id="DIV_13">
<div id="DIV_14" class="tab-content">
<div id="money-back" class="tab-pane">
<div id="DIV_16">
<p id="P_17">
You can request refunds until 30 days of your purchase date. We will refund 100% of your payment- no questions asked.
</p>
<p id="P_18">
<strong id="STRONG_19">Before asking for refund, did you try our technical help? You are welcome to visit our <a href="http://wp-types.com/forums/forum/support-2/" id="A_20">technical forum</a> and our experts will try their best to make you happy with our product.</strong>
</p>
<p id="P_21">
You may also reach our <strong id="STRONG_22">management</strong> directly, <a href="http://wp-types.com/home/contact-us/" id="A_23">contact us</a>.
</p>
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
#DIV_1 {
border-bottom-color: rgb(51, 51, 51);
border-left-color: rgb(51, 51, 51);
border-right-color: rgb(51, 51, 51);
border-top-color: rgb(51, 51, 51);
box-sizing: border-box;
color: rgb(51, 51, 51);
cursor: default;
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-size: 14px;
height: 320px;
line-height: 20px;
outline-color: rgb(51, 51, 51);
text-decoration: none solid rgb(51, 51, 51);
width: 1130px;
border: 0px none rgb(51, 51, 51);
border-top: 0px none rgb(51, 51, 51);
border-right: 0px none rgb(51, 51, 51);
border-bottom: 0px none rgb(51, 51, 51);
border-left: 0px none rgb(51, 51, 51);
border-color: rgb(51, 51, 51);
font: normal normal normal 14px/20px 'Open Sans', Helvetica, Arial, sans-serif;
outline: rgb(51, 51, 51) none 0px;
}/*#DIV_1*/
#DIV_2 {
border-bottom-color: rgb(51, 51, 51);
border-left-color: rgb(51, 51, 51);
border-right-color: rgb(51, 51, 51);
border-top-color: rgb(51, 51, 51);
box-sizing: border-box;
color: rgb(51, 51, 51);
cursor: default;
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-size: 14px;
height: 100px;
line-height: 20px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
$('[data-toggle=pill]').on('click', function() {
var $pill = $(this).parent();
if ( $pill.hasClass('active') ) {
alert('dupa');
$( $(this).attr("href") ).toggleClass('active');
$pill.toggleClass('collapsed');
}
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: