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
<!-- Mobile meta & links --> | |
<!-- Reference | |
Custom Icon and Image Creation Guidelines: | |
http://developer.apple.com/library/safari/#documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html | |
Configuring Web Applications: | |
http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html |
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
// http://www.slideshare.net/nzakas/high-performance-javascript-amazon-devcon-2011 | |
var list = document.getElementsByClassName('items')[0], | |
fragment = document.createDocumentFragment(), | |
i, item; | |
for (i=0; i < 10; i++) { | |
item = document.createElement('li'); | |
item.innerHTML = 'item #'+i; | |
fragment.appenChild(item); | |
} |
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
/** | |
Copyright (c) 2008 Victor Stanciu; contact [at] victorstanciu [dot] ro; http://www.victorstanciu.ro/ | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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
<!-- Zweiter Versuch by @yatil ---> | |
<!-- Nun auch mit Sprachauszeichnung. ---> | |
<!-- Dritter Versuch by @sindrewimberger---> | |
<!-- Nun auch mit microformat. ---> | |
<article class="vcard"> | |
<hgroup> | |
<h2>Weitersagen!</h2> | |
<h1 class="note">Die führende <span lang="en">Social Media</span> Agentur Europas sucht:</h1> | |
</hgroup> | |
<ul> |
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
// Make Outlook 2007+ behave with line-heights | |
element { | |
mso-line-height-rule:exactly; | |
-mso-line-height-rule:exactly; | |
} |
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
/** | |
* Add this script to the end of your document that use <input autofocus type="text" /> | |
* or <input type="text" placeholder="username" /> and it'll plug support for browser | |
* without these attributes | |
* Minified version at the bottom | |
*/ | |
(function () { | |
function each(list, fn) { | |
var l = list.length; |
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
/* | |
Title: ImagesObserver | |
About: Author | |
Joe Gornick | |
*/ | |
/* | |
Class: ImagesObserver | |
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
/* pGA - Monitor events with Google Analytics ga.js tracking code | |
* port of jGoogleAnalytics (version 1.0 2008-06-18) to use prototype | |
* | |
* @author: Sindre Wimberger // [email protected] | |
* @version: 1.0 2009-05-20 | |
* | |
* Requires Prototype 1.6.1 or higher | |
* | |
* Uses some elements of gaTracker (c)2007 Jason Huck/Core Five Creative | |
* http://plugins.jquery.com/files/jquery.gatracker.js_0.txt |
NewerOlder