Last active
October 3, 2015 15:32
-
-
Save hirokazumiyaji/465a677c55d6d759d271 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Timeline</title> | |
</head> | |
<body> | |
<div> | |
<ul> | |
<li> | |
message1 | |
</li> | |
<li> | |
message2 | |
</li> | |
</ul> | |
</div> | |
<div> | |
<form> | |
<textarea></textarea> | |
<div id="error"></div> | |
<button onclick="submit">Message Post</button> | |
</form> | |
</div> | |
<script> | |
function postComment() { | |
$.ajax({ | |
url: "", | |
type: "POST", | |
data: {}, | |
success: function(data) { | |
}, | |
error: function(response, status, err) { | |
} | |
}); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment