This file contains 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
/** | |
* DataTables plug-in to handle U.S.-style dates. Requires month day year. | |
* Time is optional and can be in 12 or 24 hour formats. | |
* Properly parses mm/m, dd/d and yyyy/yy. | |
* | |
* Based on original datetime-us plugin by Kevin Gravier. | |
* | |
* @name Flexible US Datetime | |
* @summary Sort dates and times in US mm/dd/yyyy with optional time. | |
* @author Mark Stewart |
This file contains 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 http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>SO equal height columns</title> | |
<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.3.js'></script> | |
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/css/bootstrap.min.css"> | |
<style type='text/css'> | |
.col{ | |
margin-bottom: -99999px; |
This file contains 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>Styling radios & checkboxes using CSS3</title> | |
<link rel="stylesheet" media="screen" href="styles.css" > | |
</head> | |
<body> | |
<h1>Styling radios & checkboxes using CSS3</h1> |
This file contains 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
// Adds subtle hover effect to Highcharts chart where it's contained within a div with class="sparkline" | |
// Default background in #fff | |
$(".sparkline").mouseenter(function(){ | |
$(this).find('rect').attr('fill','#F7F9F9'); | |
}).mouseleave(function(){ | |
$(this).find('rect').attr('fill','#fff') | |
}) |