Jquery Popup Box
I'm new to JavaScript and Jquery. I googled Jquery pop-up examples online. I want the message to say 'Our website is not yet complete, but feel free to browse what we have.' I'll i
Solution 1:
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
Solution 2:
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.
}
{
});
});
Post a Comment for "Jquery Popup Box"