Click here to Skip to main content
15,885,914 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: onKey Up/Down/Press Pin
V.7-Mar-07 2:30
professionalV.7-Mar-07 2:30 
GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 20:12
professionalV.8-Mar-07 20:12 
GeneralRe: onKey Up/Down/Press Pin
Shog97-Mar-07 7:50
sitebuilderShog97-Mar-07 7:50 
GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 3:21
professionalV.8-Mar-07 3:21 
GeneralRe: onKey Up/Down/Press Pin
badgrs8-Mar-07 4:23
badgrs8-Mar-07 4:23 
GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 5:07
professionalV.8-Mar-07 5:07 
GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 20:11
professionalV.8-Mar-07 20:11 
GeneralRe: onKey Up/Down/Press Pin
Shog98-Mar-07 4:50
sitebuilderShog98-Mar-07 4:50 
Ok... Let's try something else. Throw this in a little test HTML file. It should display what you type, as you type it. Let me know how this fails.

<script>
function ShowText()
{
   var input = document.getElementById("input");
   var output = document.getElementById("output");
   var txt = input.value;
   if ( output.textContent != null )
      output.textContent = txt;
   else if ( output.innerText != null )
      output.innerText = txt;
}
</script>

<textarea id="input" style="width:90%;height:6em;" onkeyup="ShowText()"></textarea>
<div id="output"></div>



----
It appears that everybody is under the impression that I approve of the documentation. You probably also blame Ken Burns for supporting slavery.
--Raymond Chen on MSDN

GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 4:58
professionalV.8-Mar-07 4:58 
GeneralRe: onKey Up/Down/Press Pin
V.8-Mar-07 20:11
professionalV.8-Mar-07 20:11 
AnswerRe: onKey Up/Down/Press Pin
itsme_manish8-Mar-07 0:48
itsme_manish8-Mar-07 0:48 
QuestionHow to access Internet explorer in ASP or in javascript [modified] Pin
Sachin Pimpale7-Mar-07 1:47
Sachin Pimpale7-Mar-07 1:47 
AnswerRe: How to access Internet explorer in ASP or in javascript Pin
Michael Hendrickx7-Mar-07 5:38
Michael Hendrickx7-Mar-07 5:38 
AnswerRe: How to access Internet explorer in ASP or in javascript Pin
Shog97-Mar-07 7:51
sitebuilderShog97-Mar-07 7:51 
QuestionHow to compile Little Movie processing source format(.LS) file in windows Pin
malayappa6-Mar-07 21:54
malayappa6-Mar-07 21:54 
AnswerRe: How to compile Little Movie processing source format(.LS) file in windows Pin
Bradml6-Mar-07 22:17
Bradml6-Mar-07 22:17 
QuestionAdding smilies to a radiobuttonlist in a datagrid Pin
nclauder6-Mar-07 21:01
nclauder6-Mar-07 21:01 
QuestionBased on Javascript Pin
sudidelaravindra6-Mar-07 2:13
sudidelaravindra6-Mar-07 2:13 
AnswerRe: Based on Javascript Pin
Vasudevan Deepak Kumar6-Mar-07 10:12
Vasudevan Deepak Kumar6-Mar-07 10:12 
AnswerRe: Based on Javascript Pin
Shog97-Mar-07 8:39
sitebuilderShog97-Mar-07 8:39 
GeneralRe: Based on Javascript Pin
sudidelaravindra11-Mar-07 21:05
sudidelaravindra11-Mar-07 21:05 
GeneralRe: Based on Javascript Pin
Shog912-Mar-07 4:57
sitebuilderShog912-Mar-07 4:57 
AnswerRe: Based on Javascript Pin
Dmitry Khudorozhkov7-Mar-07 9:05
Dmitry Khudorozhkov7-Mar-07 9:05 
QuestionOpen a file from server Pin
hiral_shah6-Mar-07 0:44
hiral_shah6-Mar-07 0:44 
AnswerRe: Open a file from server Pin
Bradml6-Mar-07 1:28
Bradml6-Mar-07 1:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.