Click here to Skip to main content
15,922,696 members
Home / Discussions / Web Development
   

Web Development

 
QuestionJavascript question Pin
macca2425-Aug-05 1:21
macca2425-Aug-05 1:21 
AnswerRe: Javascript question Pin
Sarvesvara (BVKS) Dasa27-Aug-05 1:45
Sarvesvara (BVKS) Dasa27-Aug-05 1:45 
GeneralRe: Javascript question Pin
macca2428-Aug-05 22:20
macca2428-Aug-05 22:20 
AnswerRe: Javascript question Pin
Sarvesvara (BVKS) Dasa29-Aug-05 14:21
Sarvesvara (BVKS) Dasa29-Aug-05 14:21 
GeneralRe: Javascript question Pin
macca2429-Aug-05 22:52
macca2429-Aug-05 22:52 
QuestionHTTP 1.1 server compliance/conformance test? Pin
Moak25-Aug-05 0:43
Moak25-Aug-05 0:43 
QuestionJavascript: How to get/set caret position in TextArea control? Pin
bin_bin124-Aug-05 11:02
bin_bin124-Aug-05 11:02 
AnswerRe: Javascript: How to get/set caret position in TextArea control? Pin
Shog924-Aug-05 13:16
sitebuilderShog924-Aug-05 13:16 
GeneralCan you give me some details? Pin
bin_bin125-Aug-05 3:42
bin_bin125-Aug-05 3:42 
AnswerRe: Can you give me some details? Pin
Shog925-Aug-05 5:07
sitebuilderShog925-Aug-05 5:07 
GeneralThank you so much. Pin
bin_bin125-Aug-05 5:15
bin_bin125-Aug-05 5:15 
AnswerRe: javascript How to get/set caret position in TextArea control? Pin
T1TAN24-Aug-05 22:26
T1TAN24-Aug-05 22:26 
GeneralRe: javascript How to get/set caret position in TextArea control? Pin
bin_bin125-Aug-05 3:44
bin_bin125-Aug-05 3:44 
GeneralRe: javascript How to get/set caret position in TextArea control? Pin
T1TAN25-Aug-05 21:19
T1TAN25-Aug-05 21:19 
QuestionHow can i read itens from a datagrid using Javascript? Pin
BROCA-BRAZIL24-Aug-05 8:53
BROCA-BRAZIL24-Aug-05 8:53 
AnswerRe: How can i read itens from a datagrid using Javascript? Pin
Sarvesvara (BVKS) Dasa27-Aug-05 1:47
Sarvesvara (BVKS) Dasa27-Aug-05 1:47 
GeneralLoading controls dynamically Pin
totig23-Aug-05 19:29
totig23-Aug-05 19:29 
GeneralRe: Loading controls dynamically Pin
minhpc_bk23-Aug-05 21:50
minhpc_bk23-Aug-05 21:50 
Generalinfobar Pin
Sam 200623-Aug-05 18:47
Sam 200623-Aug-05 18:47 
GeneralRe: infobar Pin
T1TAN23-Aug-05 22:50
T1TAN23-Aug-05 22:50 
GeneralRe: infobar Pin
Sam 200624-Aug-05 5:51
Sam 200624-Aug-05 5:51 
GeneralRe: infobar Pin
T1TAN24-Aug-05 6:01
T1TAN24-Aug-05 6:01 
GeneralJAVASCRIPT HELP Pin
dgap23-Aug-05 8:26
dgap23-Aug-05 8:26 
GeneralRe: JAVASCRIPT HELP Pin
Guffa23-Aug-05 9:16
Guffa23-Aug-05 9:16 
GeneralTitle: textarea character counting question (javascript) Pin
pduncan8823-Aug-05 5:06
pduncan8823-Aug-05 5:06 
Hi everyone,

I have a countChars function (javascript) for my textarea box: The functions uses a textarea, and textbox. User is only allowed to type up to "maxLength" characters in the textarea and the characters remaining is displayed in the textbox.

function countChars(controlToValidateRef, maxLength,outputControlRef, errorMessage, enableClientSideRestriction,showJavascriptAlert,showCharacterCount)
{
var countString = maxLength - controlToValidateRef.value.length;
if (countString < 0) {
if (enableClientSideRestriction) {
controlToValidateRef.value = controlToValidateRef.value.substring( 0, maxLength );
if (showJavascriptAlert) {
alert(errorMessage);
}
return false;
}
} else {
if (showCharacterCount) {
outputControlRef.value = countString;
}
}
}

I'm using this function for the following events (onkeyup,onChange,OnFocus,OnBlur) of the textarea

This works in every scenario, except when a user uses the browser to paste in text. Any way to detect this???

Thanks,
Paul

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.