All, please!

Doc: http://fortawesome.github.io/Font-Awesome/cheatsheet/
Usage:

<i class="fa fa-home"></i>
<i class="fa fa-clock-o fa-2x"></i>
								
Doc: http://xdsoft.net/jqplugins/datetimepicker/ Usage:

// If Modernizr is included, and device supports touch and date type, use native picker
if(typeof(Modernizr) != 'undefined' && Modernizr.inputtypes.date && Modernizr.touch)
	$('.date').attr('type','date');
else
	// Use jQuery picker
	$('.date').datetimepicker({
		timepicker:false,
		format:'d.m.Y'
	});
								

Doc: https://github.com/marcuswestin/store.js/
Usage:

// Store 'marcus' at 'username'
store.set('username', 'marcus')
 
// Get 'username'
store.get('username')
 
// Remove 'username'
store.remove('username')
 
// Clear all keys
store.clear()
 
// Store an object literal - store.js uses JSON.stringify under the hood
store.set('user', { name: 'marcus', likes: 'javascript' })
 
// Get the stored object - store.js uses JSON.parse under the hood
var user = store.get('user')
alert(user.name + ' likes ' + user.likes)
 
// Get all stored values
store.getAll().user.name == 'marcus'
								
Doc: https://github.com/EightMedia/hammer.js/wiki
Usage:

var hammertime = $('body').hammer();
hammertime.on('swipeleft', '#my-container', function(){
	console.log('You swiped container left!');
});
								

Shiny:

<button class="btn btn-success shiny">This is so shiny!</button>

Wide:

<button class="btn btn-success wide">Long button is looong!</button>

Staged:

<button class="btn btn-success staged">Staged</button>

Round:

<button class="btn btn-success round-full">Fully rounded</button>
Usage:


								
This is in front,
And...
This is in back!