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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="./default.css" /> | |
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
jQuery(function() { | |
// Document is ready |
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 arrayToSort = ["z", "a", "c", "f", "e", "d" ]; | |
var sortOrder = ["a", "b", "c", "d", "e"]; | |
arrayToSort.sort(function(a,b) { | |
var sa = sortOrder.indexOf(a); | |
var sb = sortOrder.indexOf(b); | |
if (sa == -1) return 1; | |
if (sb == -1) return -1; | |
return sa < sb ? -1 : 1; | |
}); |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>2 Columns Page Layout</title> | |
<style type="text/less"> | |
@col1BGColor: #dad09a; | |
@col1Width: 200px; |
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 id="container" style=""> | |
<div class="bottom_div" style="">1</div> | |
<div class="bottom_div" style="display: none">2</div> | |
<div class="bottom_div" style="">3</div> | |
<div class="bottom_div" style="">4</div> | |
</div> |