Skip to content

Instantly share code, notes, and snippets.

View jeromecoupe's full-sized avatar
💭
coding away

Jérôme Coupé jeromecoupe

💭
coding away
View GitHub Profile
@jeromecoupe
jeromecoupe / gist:2567707
Created May 1, 2012 12:37 — forked from croxton/gist:1505601
User friendly modal windows for touch devices using Colorbox and Modernizr
$(document).ready(function(){
// colorbox
if ($('#modal').length > 0) {
var modalConfig = {
inline : true,
href : "#modal",
opacity : .75,
onLoad:function(){
$('#modal').css('display','block');
@jeromecoupe
jeromecoupe / clearingfloats.css
Created February 26, 2012 11:05
Float Clearing Styles
/* =Clearing floats without markup
To be combined with a Paul Irish approach of ie specific styles
<http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/>
---------------------------------*/
.group:after {
content: ".";
display: block;
height: 0;
clear: both;