Dialog Jquery UI
Posté : 15 nov. 2012, 02:38
Bonjour,
Je souaietrai coment faire fonctionner jquery ui dialog.
http://jqueryui.com/dialog/
J'ai birn mis dans le hezder :
mais je ne'ai pas de boite de dialog.
Merci de m'aider
Je souaietrai coment faire fonctionner jquery ui dialog.
http://jqueryui.com/dialog/
J'ai birn mis dans le hezder :
Code : Tout sélectionner
<title>jQuery UI Dialog - Modal message</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="/resources/demos/external/jquery.bgiframe-2.1.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>
Merci de m'aider