• Stars
    star
    298
  • Rank 139,663 (Top 3 %)
  • Language
    JavaScript
  • Created about 12 years ago
  • Updated over 8 years ago

Reviews

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

Repository Details

A rich textarea control that supports emojis, WYSIWYG-style.

.emojiarea()

A small 6kb jQuery plugin for turning regular textareas into ones that support emojis, WYSIWYG style! Set up a list of available emojis, call $('textarea').emojiarea() and you're done (basically). There's a plain-text fallback, so if the browser doesn't support contentEditable, it will degrade gracefully—the user will still be able to use the dropdown menu of emojis.

Screenshot

<textarea>Hello :smile:</textarea>
<script type="text/javascript">$('textarea').emojiarea();</script>

Configuration

Dropdown Menu

Dropdown Screenshot

By default, the plugin will insert a link after the editor that toggles the emoji selector when clicked.

<a href="javascript:void(0)" class="emoji-button">Emojis</a>

If you wish change this behavior and have the button placed before the editor, or change the label of the link, use:

$('textarea').emojiarea({
    buttonLabel: 'Add Emoji',
    buttonPosition: 'before'
});

Alternatively, if you wish to use your own button:

$('textarea').emojiarea({button: '#your-button'});

For customizing the visual appearance, see the CSS / Skinning section.

Available Emojis

$.emojiarea.path = '/path/to/folder/with/icons';
$.emojiarea.icons = {
    ':smile:'     : 'smile.png',
    ':angry:'     : 'angry.png',
    ':flushed:'   : 'flushed.png',
    ':neckbeard:' : 'neckbeard.png',
    ':laughing:'  : 'laughing.png'
};

Defaults

If you wish to set the defaults for $().emojiarea(), extend $.emojiarea.defaults like so:

$.extend($.emojiarea.defaults, {
    buttonPosition: 'before'
});

For a basic set of emojis, see "packs/basic".

CSS / Skinning

See jquery.emojiarea.css for the few fundamental CSS styles needed for this to work.

Basically, you'll want to adjust the following styles:

.emoji-wysiwyg-editor /* the editor box itself */
.emoji-menu > div /* the dropdown menu with options */
.emoji-wysiwyg-editor img /* the emoji images in the editor */

Footnotes

  • Huge props to Tim Down for the many insightful answers on Stack Overflow having to deal with cross-browser selection handling.
  • If you have a really rad set of emojis and would like to share, please fork this, add them to "packs/", and submit a pull request!
  • For a giant list of emojis (used by Github, Basecamp, et al), see "Emoji cheat sheet".

License

Copyright © 2012 DIY Co

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

More Repositories

1

NSStringEmojize

A category on NSString to convert Emoji Cheat Sheet codes to their equivalent Unicode characters
Objective-C
637
star
2

intercom.js

UNMAINTAINED: A client-side cross-window message broadcast library built on top of the HTML5 localStorage API.
JavaScript
566
star
3

wizardry

A task-based node.js library for GraphicsMagick / ImageMagick.
JavaScript
121
star
4

jquery-placeholder

A jQuery plugin that polyfills the HTML5 "placeholder" attribute.
JavaScript
76
star
5

handlebars-helpers

Collection of generic handlebars helpers.
JavaScript
53
star
6

av

A "keep it simple, stupid" approach to working with AVFoundation
Objective-C
43
star
7

open-sourcerer

DIY Skill
29
star
8

opensourcerer.diy.org

A DIY Guide to Git, GitHub and open source collaboration!
JavaScript
14
star
9

diy-client

Minimalist streaming API client for DIY
JavaScript
5
star
10

icons

Future home of the diy-icons set
HTML
5
star
11

donutchart

Reusable donut chart module for DIY.
JavaScript
4
star
12

traducteur

A simple Node.js client for Google's Translation API.
JavaScript
4
star
13

web-playground

Play with web examples in a DIY friendly environment.
JavaScript
3
star
14

super-simple-server

DIY Simple Server Example for Backend Dev Skill
JavaScript
3
star
15

react-video-thumbnail

A react component that takes incremental snapshots of your videos
JavaScript
3
star
16

maker-club

Graphics and documents you might need to start your own Maker Club.
3
star
17

radarchart

Reusable radar chart module for DIY.
JavaScript
3
star
18

tos

DIY's Terms of Service
2
star
19

style-css

Styleguide for writing CSS at DIY
2
star
20

clubs

Creative assets for Club Leaders
2
star
21

classrooms

Assets to help educators add DIY to their classroom.
1
star
22

backenddev

Supplemental resources for Backend Dev skill on DIY.org
CSS
1
star
23

proxy-server

A simple proxy server for the DIY Maker's Stream API
JavaScript
1
star
24

style-js

Javascript style guide for DIY
1
star
25

assembly-assets

Mutate a transloadit assembly results array in to a diy assets object.
JavaScript
1
star
26

skill-stats

Service for gathering stats on DIY skills.
1
star
27

frontend-dev

Supplemental resources for Front-end developer skill on DIY.org
JavaScript
1
star