Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/philipnewcomer/confirm-submit

A simple little helper to show confirmation prompts for buttons and forms before submitting.
https://github.com/philipnewcomer/confirm-submit

confirm form forms html javascript npm-package submit

Last synced: about 1 month ago
JSON representation

A simple little helper to show confirmation prompts for buttons and forms before submitting.

Awesome Lists containing this project

README

        

# confirm-submit
A simple little helper to show confirmation prompts for buttons and forms before submitting.

## Installation

`npm install --save-dev confirm-submit`

## Requirements

- jQuery

## Usage

```javascript
require('confirm-submit');
```
...or simply load `src/confirm-submit.js` in your app.

Create a link, button, or form that requires user confirmation before submitting. Add a data attribute named `confirm-submit`, which contains the message that should be shown to the user in the alert.

```html

Leave Site

```

You can use it in conjunction with a Javascript event listener on the click action:

```html

Launch Missile

```

It even works when used directly on form tags:

```html

```