• This repository has been archived on 04/May/2019
  • Stars
    star
    102
  • Rank 334,520 (Top 7 %)
  • Language
    JavaScript
  • Created about 13 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A font selector for the Google Web Fonts api

Note: This project is no longer maintained, there is a version being updated and with additional options by Arjan Haverkamp, here: https://github.com/av01d/fontselect-jquery-plugin

Fontselect jQuery Plugin

A font selector to choose from fonts available as part of the Google Web Fonts api.

Let users easily select and preview a font from Google's large range of free fonts.

Documentation

To create a font selector simply run the plugin on a standard html input element.

How to use

    $('input.fonts').fontselect();

Options

Fontselect has one argument, an options object that you might want to customise:

  • style: the class to give the new font selector

  • placeholder: text to use when no font is selected yet

  • lookahead: a number of fonts to try and preload ahead in the select box

      $('input.fonts').fontselect({
        style: 'font-select',
        placeholder: 'Select a font',
        lookahead: 2
      });
    

Events

Fontselect triggers the change event on the original element when a font is selected. An example is included to show how this could be used to update the font on the current page.

    $('input.fonts').fontselect().change(function(){
    
      // replace + signs with spaces for css
      var font = $(this).val().replace(/\+/g, ' ');
      
      // log font name
      console.log(font);
    });

License / Credits

This plugin is released under the MIT license. It is simple and easy to understand and places almost no restrictions on what you can do with the code. More Information

Download

Releases are available for download from GitHub.

More Repositories

1

tinycon

A small library for manipulating the favicon, in particular adding alert bubbles and changing images.
JavaScript
5,110
star
2

crumble

Crumble makes it easy to create feature tours in your website or app.
JavaScript
659
star
3

react-emoji-render

Normalize and render emoji's the way your users expect.
JavaScript
337
star
4

emojione-picker

A react emoji picker for use with emojione
JavaScript
261
star
5

electron-lets-move

Automatically move Electron apps to the Applications directory
JavaScript
178
star
6

fastimage

FastImage finds the dimensions or filetype of an image at a url by fetching the least data possible
PHP
163
star
7

HackerNew

The best Chrome extension to make Hacker News quicker and more useful.
JavaScript
125
star
8

navigate-jquery-plugin

Allows any group of dom elements to be navigated with the keyboard arrows
JavaScript
16
star
9

tinyrange-jquery-plugin

TinyRange is a small jquery slider plugin that augments the html5 range element
JavaScript
15
star
10

promise-pool

A flexible pool of promises that can be awaited and executed at a chosen level of concurrency
JavaScript
10
star
11

Zap

Zap! is an audio manager for html 5 applications with a focus on real time and interactive applications such as games.
JavaScript
7
star
12

distribute-jquery-plugin

Ensures child elements are horizontally spaced evenly in fluid layouts
JavaScript
6
star
13

mime-names

Media Type Names Database
JavaScript
4
star
14

Testing-Repo

Testing Repository.
JavaScript
4
star
15

annotatey

Draw annotations on any website and save to Dropbox. Hack project for TechCrunch Disrupt 2013
JavaScript
3
star
16

dotfiles

My dotfiles. It's public because it's free, not because you should care.
Ruby
3
star
17

sheffield-js-photobooth

Sample application built for talk on node-webkit at Sheffield.js
JavaScript
2
star
18

felony

WIP. HTML5 top-down game using box2d
JavaScript
1
star
19

electronguides.github.io

A collection of guides for those building Electron apps
1
star
20

macflix

Mac desktop wrapper for Netflix with all the goodies you'd expect
JavaScript
1
star
21

pulse-jquery-plugin

Animate the DOM using a mediaStream
JavaScript
1
star
22

personal-api

WIP, framework for anyone to easily build a personal API.
JavaScript
1
star
23

vagrant-heroku

Ruby
1
star
24

easy-peer-connection

A wrapper library to make PeerConnections in the web browser easy
1
star
25

tommoor.github.io

Personal website
HTML
1
star
26

doorman

This script answers my front door
JavaScript
1
star
27

quantified-chrome

Track your browsing habits
CSS
1
star
28

filecop

Checks filenames against a library of filename rules to find sensitive files
Ruby
1
star
29

forest

Fast, detailed event logging for lithium PHP
1
star