Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 586 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 586 Bytes

Dia.js

Simple, Plain, Customizable JS Dialogs.

Demo

http://mattlockyer.github.io/diajs/

Dependencies

jQuery (loaded from google if undefined)

Setup

<script src="dia.js"></script>

How to:

Alert

DIA.alert('Hip Hop, Horray');

Confirm

DIA.confirm('Which type of music do you prefer?', function(value) {
  console.log(value);
}, {'Hip Hop':'Hooray', 'Metal':'Burn Everything'});

Prompt

DIA.prompt('How old are you?', function(value) {
  console.log(value);
}, 'my age', {'Yes, that is correct':true});