Skip to content

Instantly share code, notes, and snippets.

@isstaif
Last active August 29, 2015 14:15
Show Gist options
  • Save isstaif/5199e311586427e6d331 to your computer and use it in GitHub Desktop.
Save isstaif/5199e311586427e6d331 to your computer and use it in GitHub Desktop.
Javascript hello
<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