Adding JavaScript code on character limit prevents copy/paste function | XM Community
Skip to main content
Solved

Adding JavaScript code on character limit prevents copy/paste function

  • February 15, 2024
  • 3 replies
  • 317 views

RMS
Level 1 ●
Forum|alt.badge.img+4
  • Level 1 ●
  • 5 replies

I added some helpful JavaScript code found in this community to an essay text box which allows me to create a 250 word limit.  Works perfectly except I cannot copy text from a Word document into the essay box.  Without the code, I easily can.  Note that I have tried to copy and paste a word count way below the max.  Code used is below.  Thank you for any feedback!

-----------------------------------------------------------------------------------------------

Qualtrics.SurveyEngine.addOnReady(function()
{
var that=this.questionId;
jQuery("<p id='count'>Words remaining: 250</p>").insertAfter("#"+that +" .QuestionText");
var numOfWords = 0;
jQuery("#"+that +" .InputText").on("cut copy paste",function(e) {
e.preventDefault();
});
jQuery("#"+that +" .InputText").keypress(function(){
numOfWords =jQuery("#"+that +" .InputText").val().replace(/^[\\s,.;]+/, "").replace(/[\\s,.;]+$/, "").split(/[\\s,.;]+/).length;
jQuery("#count").text("Words remaining: "+(250-parseInt(numOfWords)));
if( numOfWords > 250 ){
event.preventDefault();
}
});

});

Best answer by ahmedA

Just delete these three lines:

jQuery("#"+that +" .InputText").on("cut copy paste",function(e) {
e.preventDefault();
});

 

 

View original

3 replies

Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • 2028 replies
  • Answer
  • February 15, 2024

Just delete these three lines:

jQuery("#"+that +" .InputText").on("cut copy paste",function(e) {
e.preventDefault();
});

 

 


RMS
Level 1 ●
Forum|alt.badge.img+4
  • Author
  • Level 1 ●
  • 5 replies
  • February 19, 2024

Thank you for the solution which does allow copy paste!  However, it does not seem to manage the word count correctly any more.  Any ideas why that would be?  For example, my word count in Qualtrics says I have used 32 words when I have actually pasted in 110 from a Word doc. 


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • February 19, 2024
RMS wrote:

Thank you for the solution which does allow copy paste!  However, it does not seem to manage the word count correctly any more.  Any ideas why that would be?  For example, my word count in Qualtrics says I have used 32 words when I have actually pasted in 110 from a Word doc. 

You are only counting words when a keypress event takes place, and not when a paste event takes place.


Leave a Reply