mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
34 lines
939 B
HTML
34 lines
939 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.4.js""></script>
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
$("#btnsubmit").click(function () {
|
||
|
var txtinput = $('input:text[name=txtinput]').val();
|
||
|
alert(txtinput);
|
||
|
$('#txtoutput').val(txtinput);
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
<style>
|
||
|
input {
|
||
|
margin-left: 3.2em;
|
||
|
border: 1px solid tomato;
|
||
|
border-radius: 4.2px;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h2>Copy Textbox value</h2>
|
||
|
<div id='input'>
|
||
|
<table>
|
||
|
<tr><td>Input Textbox:</td><td><input type='text' id='txtinput' name='txtinput'></td></tr>
|
||
|
<tr><td>Output Textbox:</td><td> <input type='text' id='txtoutput' name='txtoutput'></td></tr>
|
||
|
</table>
|
||
|
<input type='submit' id='btnsubmit' value='Copy'>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|