View jQuery: use strict
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
jQuery(document).ready(function () { | |
'use strict'; | |
}); |
View carousel.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
<div id="carousel" class="carousel slide" data-ride="carousel"> | |
<!-- Indicators --> | |
<ol class="carousel-indicators"> | |
</ol> | |
<!-- Wrapper for slides --> | |
<div class="carousel-inner" role="listbox"> | |
<div class="item active"> | |
<img src="http://placehold.it/1900x550" class="img-responsive" alt=""> | |
<div class="carousel-caption"> |
View Parrent add class to parrent.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
<div class="side-box"> | |
<h4 class="side-title">Schermdiogonaal <i class="fa fa-angle-down"></i></h4> | |
<ul class="side-list"> | |
<li><label><input type="checkbox"><span> Check me out</span></label></li> | |
<li><label><input type="checkbox"><span> Check me out</span></label></li> | |
<li><label><input type="checkbox"><span> Check me out</span></label></li> | |
<li><label><input type="checkbox"><span> Check me out</span></label></li> | |
<li><label><input type="checkbox"><span> Check me out</span></label></li> | |
</ul> | |
</div> |
View Bootstrap carousel slide fix ie9
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
https://gist.github.com/barryvdh/6155151 |
View jQuery Masonry.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
<div id="container"> | |
<article class="col-sm-4 blog-article item"> | |
<div class="b-inner"> | |
<h3 class="b-title">Titel 1</h3> | |
<a href="/" class="btn btn-default">Lees het volledige artikel</a> | |
</div> | |
</article> | |
<article class="col-sm-4 blog-article item"> | |
<div class="b-inner"> | |
<h3 class="b-title">Title 2</h3> |
View Jquery: Refresh page when windows size change.js
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
jQuery(function($){ | |
var windowWidth = $(window).width(); | |
$(window).resize(function() { | |
if(windowWidth != $(window).width()){ | |
location.reload(); | |
return; | |
} | |
}); | |
}); |
OlderNewer