🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Infobox is a really simple JQuery plugin that enables you to create modal-style popups with fullscreen overlay and easing effects (jQuery UI is required).

Modal popup Overlay

Documentation

Infobox Plugin

Highly customizable light weight pop up plugin

you can use either with "jquery ui" library to get extra aniamtion effect on pop up or else you can also use only with "jquery" library Any one who knows basic javascript or jquery can easily use this plugin

alt tag

Basic usage

$("body").infobox({ type : 'sucess'});

Settings

no need to change "body"

$("body").infobox({  type        : 'sucess',    /*here you can define sucess, error ,normal*/  tittle      : 'succes You made it',  /*here you can define error message tittle*/  message     : 'You passed success fully',  /*here you can define error message*/   overlay     : 'true',   /*here you can define "true' or "false" to hide overlay while pop up*/  effect      : 'on',     /*this is the one of the main part ,define "off" if u are not using jquery ui library*/  anim        : 'slide',  /*here you can define diffrent animation like slide,fold,bounce,scale  if you are uisng "jquery ui"*/  vposition   : 'right',  /*here you can define vertcal postion of pop up*/  hposition   : 'bottom', /*here you can define horizontal postion of pop up*/  timeout     : '4000',   /*here you can define timeout to hide the pop up*/ }); 

License

Released under the MIT License.


You May Also Like