Simple Jquery Alert is a jquery based, mobile-ready & highly customizable Alert Box

  • By Abhishek Kumar
  • Last update: Sep 18, 2020
  • Comments: 0

Simple Jquery Alert

Simple Jquery Alert is a jquery based, mobile-ready & highly customizable Alert Box

Installation

Downloading Repo

clone this repo & add following line to your code.

">
<link rel="stylesheet" href="src/jquery-simple_alert.css">

<script src="src/jquery-simple_alert.js">script>
Directly From Github

You can without downloading by adding following line in your code

">
<link rel="stylesheet" href="https://abhishekjnvk.github.io/jquery-simple-alert/src/jquery-simple_alert.css">

<script src="https://abhishekjnvk.github.io/jquery-simple-alert/src/jquery-simple_alert.js">script>

Customisation

Simple alert is customizable with following parameter

Parameter type default Available Options Example
text optional Text Hello World this is a simple alert with jquery
orientation optional br br,tr,tl,bl for example [tr] is for top right
bg_color optional green any color you want as a background color bg_color: 'black'
text_color optional white any color you want as a text color text_color: 'black'
after_alert optional null callback function after clicking okay after_alert: function () {alert('Showing alert as a callback');}

Example

simpleAlert({
            text:"Hello World",
            orientation:'bl',
            bg_color: 'lightgreen',
            text_color: 'black',
            after_alert: function () {
                alert('Showing alert as a callback');
            }
        })

Demo

View Demo Page

Happy contributing!

Github

https://github.com/abhishekjnvk/jquery-simple-alert