| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/sms4real.com/wwwroot/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script>
$( '#contact' ).submit( function(e){
e.preventDefault();
var formData = $( this ).serialize();
console.log( formData );
});
$.ajax({
type: 'POST',
url: '/ajax/submitContact',
data: formData,
success: function( resp ){
console.log( resp );
}
});
</script>
</head>
<body>
<form id="contact" action="#">
<input name="name"/>
<input name="email_address"/>
<textarea name="message"/></textarea>
<button id="submit"/>Submit</button>
</form>
</body>
</html>