-2
$( "#teacher-form" ).dialog({
    autoOpen: false,
    height: 300,
    width: 350,
    modal: true,
    buttons: {
            "Create an account":function(){
        $.ajax({
             url: 'newteacher',
                 type: 'POST',
                 contentType: 'application/json',
                 data: { json: JSON.stringify({
                     name:"Bob",
                     email:"xyz@xyz.com"
                 })
            },
    });
4

1 に答える 1