Jquery Modal Panel

<script src="jquery-1.4.3.min.js" type="text/javascript"><!--mce:0--></script>

	<script src="jquery-ui-1.8.5.custom.min.js" type="text/javascript"><!--mce:1--></script>


	<!--
		body { font-size: 62.5%; }
		label, input { display:block; }
		input.text { margin-bottom:12px; width:95%; padding: .4em; }
		fieldset { padding:0; border:0; margin-top:25px; }
		h1 { font-size: 1.2em; margin: .6em 0; }
		div#users-contain { width: 350px; margin: 20px 0; }
		div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; }
		div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; }
		.ui-dialog .ui-state-error { padding: .3em; }
		.validateTips { border: 1px solid transparent; padding: 0.3em; }
	
-->
	<script type="text/javascript"><!--mce:2--></script>
<div class="demo">
<div id="dialog-form" title="Create new user">
All form fields are required.
<form>
<fieldset>
		<label for="name">Name</label>
		<input id="name" class="text ui-widget-content ui-corner-all" name="name" type="text" />
		<label for="email">Email</label>
		<input id="email" class="text ui-widget-content ui-corner-all" name="email" type="text" />
		<label for="password">Password</label>
		<input id="password" class="text ui-widget-content ui-corner-all" name="password" type="password" />
</fieldset>
</form></div>
<div id="users-contain" class="ui-widget">
<h1>Existing Users:</h1>
<table id="users" class="ui-widget ui-widget-content">
<thead>
<tr class="ui-widget-header ">
<th>Name</th>
<th>Email</th>
<th>Password</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>john.doe@example.com</td>
<td>johndoe1</td>
</tr>
</tbody>
</table>
</div>
<button id="create-user">Create new user</button></div>
<!-- End demo -->
<div class="demo-description"></div>

Below is the output

This entry was posted in JQuery. Bookmark the permalink.

Leave a comment