This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var d = new Date(); | |
var y = d.getFullYear(); | |
document.write(y); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span class="year"></span>. | |
<script type="text/javascript"> | |
$(".year").text((new Date).getFullYear()); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var i = 0; | |
var maxHeight = 0; | |
for (var li = $("#equalHeight .box").length; i < li; i++) { | |
var currentHeight = $("#equalHeight .box:eq("+i+")").height(); | |
if (currentHeight > maxHeight) { | |
maxHeight = currentHeight; | |
}; | |
}; | |
$("#equalHeight .box").height(maxHeight); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var numRand = Math.floor(Math.random()*4); | |
$('.rand-img').css('background-image', "url('{siteurl}assets/images/content-images/rotator/rotator-" + numRand + ".jpg')"); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="returnTop"><p class="pull-right"><a href="#top"><i class="fa fa-arrow-up"></i></a></p></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ToC = | |
"<div class='well table-of-contents'>" + | |
"<h2>Question's List:</h2>" + | |
"<p>Click on any of the questions to go their corresponding answers below or you may just scroll down the page to find the answers you are looking for.</p>"+ | |
"<ul>"; | |
var newLine, el, title, link, id, i = 0; | |
$('.second-level-content .span8 h3').each(function(){ | |
el = $(this); | |
title = el.text(); | |
i = i+1; |
OlderNewer