<html>
<head>
<script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#Get").click(function () {
alert("hi");
$('#msg').html($('#inputboxval').val());
});
});
</script>
</head>
<body>
<h2>TextBox value : <label
id="msg"></label></h2>
TextBox : <input type="textbox"
value="Type something"
id="inputboxval"></input>
<button id="Get">Get TextBox
Value</button>
</body>
</html>