Skip to content

Instantly share code, notes, and snippets.

View stevefraser's full-sized avatar

Steve Fraser stevefraser

  • Nybble Pty Ltd
View GitHub Profile
@stevefraser
stevefraser / switching-panels.js
Created July 31, 2013 01:09
JS code for switching panels (with # nav)
<script type='text/javascript'>
var jcps={};
jcps.fader=function(speed,target,panel){
jcps.show(target,panel);
if(panel==null){
panel=''
};
$('.switcher'+ panel).click(function(){
$(".active").removeClass("active");
var _contentId='#'+ $(this).attr('id')+'-content';
@stevefraser
stevefraser / blankpage
Created July 31, 2013 00:32
HTML5 Blank Page Structure
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">