1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<script>
$(function() {
$( "#dialog-form" ).dialog({
autoOpen: false,
modal: true,
buttons: {
"Envoyer": function() {
var bValid = true;
if ( bValid ) {
$( this ).submit();
$( this ).dialog( "close" );}},
"Annuler": function() {
$( this ).dialog( "close" );}
},
close: function(){
allFields.val( "" ).removeClass( "ui-state-error" );}
});
$( "#create-user" )
.button()
.click(function()
{
$( "#dialog-form" ).dialog( "open" );
});
});
</script>
</head>
<body>
<div id="dialog-form" title="Recommander ce site à un ami">
<p class="validateTips">Recommander ce site à un ami.</p>
<form action="Data/SendAmi.php">
<fieldset>
<label for="name">Entrez votre Nom * :</label>
<input type="text" name="name" id="name" class="text ui-widget-content ui-corner-all" />
</fieldset>
</form>
</div>
<button id="create-user">Recommander ce site à un ami</button>
</body>
</html> |
Partager