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
// smooth scrolling - just put any element with attribut data-smoothscroll='#idToScrollTo' | |
// requires jQuery | |
$(function () { | |
$('[data-smoothscroll]').click( | |
function (e) { | |
var target = $(this).attr('data-smoothscroll') | |
, targetElement = $(target); |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="Description" content="Test app"> | |
<title>JavaScriptBully CSS Shake Example</title> |