Skip to content

Instantly share code, notes, and snippets.

View vladimirsiljkovic's full-sized avatar

Vladimir Šiljković vladimirsiljkovic

  • Belgrade, Serbia
View GitHub Profile
@ericelliott
ericelliott / essential-javascript-links.md
Last active May 17, 2024 03:38
Essential JavaScript Links
anonymous
anonymous / index.html
Created September 26, 2012 22:24
A carousel that shows one panel on smaller screens, and eventually reveals three panels when space becomes available. It's also touch-enabled.
<!--Pattern HTML-->
<div id="pattern" class="pattern">
<div class="c">
<div class="c-list-container">
<ul class="c-list">
<li>
<a href="#">
<img src="http://bradfrost.github.com/this-is-responsive/patterns/images/fpo_landscape.png" alt="FPO Image" />
<div class="summary">
<h2>This is the first title</h2>
@liamcurry
liamcurry / gist:2597326
Created May 4, 2012 19:56
Vanilla JS vs jQuery

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})