Introduction:
Here I will explain show simple jQuery ui modal popup window on button click with example or creating modal popup window using jQuery ui plugin modal popup features or open jQuery modal popup window on button click with example.
Description:
In previous articles I explained jquery show popup window during pageload, jquery simple modal popup window example, jQuery show alert message while leaving from website, jQuery enable / disable controls on page, jQuery Countdown timer script example and many articles relating to JQuery and asp.net. Now I will explain how to implement simple jQuery ui modal popup window example.
In previous articles I explained jquery show popup window during pageload, jquery simple modal popup window example, jQuery show alert message while leaving from website, jQuery enable / disable controls on page, jQuery Countdown timer script example and many articles relating to JQuery and asp.net. Now I will explain how to implement simple jQuery ui modal popup window example.
To implement
simple modal popup window we need to write the code like as shown below
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Show Modal Popup from code behind or server side</title>
<link type="text/css" rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"
/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript">
$(function()
{
$('#btnclick').click(function() {
$("#popupdiv").dialog({
title: "jQuery
Popup from Server Side",
width: 430,
height: 250,
modal: true,
buttons: {
Close: function()
{
$(this).dialog('close');
}
}
});
});
})
</script>
</head>
<body>
<form id="form1">
<div>
<div id="popupdiv"
title="Basic
modal dialog" style="display: none">
<b> Welcome to Aspdotnet-Suresh.com</b>
</div>
<table align="center" style="margin-top:200px">
<tr>
<td>
<input type="button" id="btnclick" value="Show Modal Popup" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
|
Demo
|
If you enjoyed this post, please support the blog below. It's FREE! Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email. |
|||
|
|||
4 comments :
Nice Post Bdy...
I want to show a modal popup on a button click of a repeater(No post back) and want the ID(clicked) on that popup. If I am keeping the popup segment in repeater so a/c to rows there are atleast 240 popup html are ready to be loaded whic results in a very slow response and sometimes the page can't even load.
So in my situation I will put the popup segment outside repeater.
I want to use jquery modal as it is lightweight.
Please suggest a way.
Thanks a lot
hhaaaaaaaaaaaaa.
There is another tutorial which explains how to create you own captcha system using jquery and css with demo without any help plugin on TalkersCode.com you can refer this http://talkerscode.com/webtricks/simple%20and%20best%20custom%20popup%20box%20using%20jquery%20and%20css.php
Working nice.
Note: Only a member of this blog may post a comment.