Readme:
Hello.
$(function(){ | |
var win = $(window); //cache your jq objects! | |
function fixScrollTop(){ | |
win.scrollTop(win.scrollTop() - 50); | |
} | |
if(window.location.hash !== ""){ |
Readme:
Hello.
Code examples from book. | |
http://my.safaribooksonline.com/book/-/9781849516709 |
asdsad | |
asdsa | |
d | |
ds | |
da | |
s | |
da |
<div class="comment-count sticker"> | |
<a href="#disqus_thread" data-disqus-identifier="" class="icon icon--online">Comment</a> | |
</div> |
// Printers don't like you or your background images, so here is a way to get them to like you. | |
a.logo { | |
display: list-item; | |
list-style-image: url("../images/examiner-print-logo.png"); | |
list-style-position: inside; | |
} |
:-webkit-full-screen .slides{ | |
cursor:url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==), auto; | |
} |
#featured a.join-today strong { | |
line-height: 32px; | |
} |
// Assign these to play around with | |
$a = 1; | |
$b = 2; | |
// 1. Assignment operators | |
$a = $b; // Assign the value of $b to $a | |
$a += $b; // Assign the value of $a + $b to $a | |
$a -= $b; // Assign the value of $a - $b to $a | |
$a .= $b; // Concatenate $a and $b |