All Projects → aurels → jquery.alerts

aurels / jquery.alerts

Licence: other
pretty alerts, confirms and prompts for jQuery

Programming Languages

javascript
184084 projects - #8 most used programming language

jQuery Alerts

This is a modified version of jQuery alerts from Cory S.N. LaViska, A Beautiful Site (abeautifulsite.net/notebook/87).

Dual-licensed as GPL and MIT.

Modifications

  • no titles anymore;

  • no ‘draggable’ dependency;

  • buttons texts are parametrables (for i18n and more flexibility).

Installation

Just copy and include the .js and .css files.

Usage

jAlert('Yup', 'Okay dude', function(){
 // ...
});

jConfirm('Sure ?', 'Yes dude', 'Nope', function(confirmed){
  if(confirmed){

}else{ }

});

jPrompt('What is the response?', 42, 'OK', 'Cancel', function(){
 // ...
});

License

Reseased under MIT License as the original source was.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].