Last active
August 29, 2015 14:15
-
-
Save isstaif/5199e311586427e6d331 to your computer and use it in GitHub Desktop.
Javascript hello
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
<html> | |
<head> | |
<title>Hello, World!</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" ></script> | |
</head> | |
<body> | |
<h1>Abdul rahman</h1> | |
<p>Comment box</p> | |
<input type='text' id='comment-box'> | |
<button id="submit">comment</button> | |
<hr /> | |
<h2>Comments area</h2> | |
<div id='comments-area'> | |
<p>first comment</p> | |
<hr /> | |
<p>second comment</p> | |
<hr /> | |
</div> | |
<script> | |
function getText(){ | |
var text = $('#comment-box').val() | |
var comment = $('<p>' + text + '</p><hr />') | |
$('#comments-area').append(comment) | |
$('#comment-box').val('') | |
} | |
$('#submit').click(getText) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment