Skip to content

Instantly share code, notes, and snippets.

View Webbanditten's full-sized avatar
🥃
Need a drink

Patrick Nærvig Wøhlk Webbanditten

🥃
Need a drink
View GitHub Profile

Material Design Spinner

CSS and SVG recreation of the new Google material design loading spinner.

A Pen by Fran Pérez on CodePen.

License.

// Released under MIT license: http://www.opensource.org/licenses/mit-license.php
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);