View Single Post
ישן 25-02-08, 01:39   # 2
pirsomet
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Jan 2008
הודעות: 104

pirsomet לא מחובר  

קוד:
<html>
<head>   
<script>
function change()
{
document.getElementById('box2').value="#"+document.getElementById('box1').value;
}

</script>
</head>
<body>
<input id=box1 type=text onPropertyChange="change()" oninput="change()" >
<br>
 <input id=box2 value='#' >
</body>
</html>

Last edited by pirsomet; 25-02-08 at 01:43..
  Reply With Quote