Jquery Popup Box

我是研究僧i 提交于 2019-12-03 09:13:24

Put this on the page.

Make sure that the first part of your question is also included.

It will make a dialog box on the page center with a message and with a close button.

Also you can change the Heading, I just added a placeholder.

$(document).ready(function(){
  $.confirm({
    'title'     : 'Heading Goes Here',
    'message'   : 'Our website is not yet complete, '
                  + 'but feel free to browse what we have.',
    'buttons'   : {
        'Close'   : {
          'class' : 'blue',
          'action': function(){}  // Nothing to do in this case.
        }
    {
  });

});
Ragesh S

Dialog window like, please see this image :

And please check this example: http://www.ericmmartin.com/projects/simplemodal/

There is various types of pop models: http://www.ericmmartin.com/projects/

And coding samples: http://www.ericmmartin.com/projects/simplemodal/#examples

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!