GithubHelp home page GithubHelp logo

wordpressdev / messagebox Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jeffreyway/messagebox

0.0 2.0 0.0 328 KB

Your standard jQuery plugin for fancy message box confirmations, notifications, etc.

License: GNU General Public License v2.0

messagebox's Introduction

Message Box jQuery Plugin

Simple plugin for displaying custom message boxes to the user.

Getting Started

Download the production version or the development version, as well as the associated stylesheet and images.

In your web page:

<link rel="stylesheet" href="css/message.css">

<script src="jquery.js"></script>
<script src="MessageBox.min.js"></script>
<script>
$.message('The most basic usage.');
</script>

Or, to specify an icon and buttons:

<script>
$.message(
	'Message box with settings.',
	{
		icon: 'setting',
		buttons: ['Yes', 'No', 'Cancel'],
		callback: function(buttonVal) {
			// buttonVal = Yes | No | Cancel
			// this = instance
		}
	}
);
</script>

Icon Choices

  • setting
  • info
  • notification
  • alert
  • accept

These are the built-in choices, however, you can specify any string as the value for icon. That value will then be applied to a new class: message-box-VALUE_YOU_PROVIDED. So, if you set icon: mine, a class of message-box-mine will be applied. You can then set a custom background image, accordingly. Refer to the icons directory in this repo for a variety of choices.g

Button Options

Pass an array, where each item represents a button that should be displayed in the message box.

Examples

Basic Usage

$.message('Here is my first message box.');

image

With Icon

$.message('Here is another message.', { icon: 'alert'});

image

Specifying Buttons

$.message('Are you sure that you wish to proceed? If so, please click "Yes."', { icon: 'setting', buttons: ['Yes', 'No', 'Cancel']});

image

Adding a Callback

$.message(
	'Are you sure?',
	{ 
		icon: 'setting',
		buttons: ['Yes', 'No'],
		callback: function(buttonVal) {
			if ( buttonVal === 'Yes' ) {
				$.message('You clicked Yes! Now you\'d proceed, accordingly.');
				console.log(buttonVal, this);
			}
		}
	}
);

License

Copyright (c) 2012 Jeffrey Way
Licensed under the GPL license.

messagebox's People

Watchers

James Cloos avatar Rafique avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.