Qualtrics: Pressing enter key to emulate continue button

Eugene

I'm very new to JavaScript, and I'm currently trying to add a custom code to my Qualtrics survey that makes it so pressing the enter key continues the survey. I have a code that should be working; however, I'm getting an "Unexpected token )" error.

Here is the code:

Qualtrics.SurveyEngine.addOnload(function()
{
    document.addEventListener("keydown", function(e) {
        if (e.keyCode === 13) {

            function(){
                that.clickNextButton();
            }

  }
    }

});

the "clickNextButton" function was found in the Qualtrics API document and is supposed to emulate the next button click. The function is clickNextButton(), but the example provided has the code as that.clickNextButton().

The example they use is below:

//Hides the next button and displays the question
//for 5 seconds before moving to the next page
this.hideNextButton();
var that = this;
(function(){that.clickNextButton();}).delay(5);

I don't need the hiding button function or the delay, but just wanted to include an example of how it is used.

Any help is much appreciated, thanks in advance!

T. Gibbons

Here is a simplified version that works (updated to hide NextButton):

Qualtrics.SurveyEngine.addOnload(function()  {
    $('NextButton').hide();         
    document.on("keydown", function(e) {
         if (e.keyCode === 13) $('NextButton').click();
    });
});

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to emulate pressing the Enter key

From Dev

Jquery: how to trigger click event on pressing enter key or clicking button

From Dev

WPF Pressing Enter Key How to Make Button look pressed

From Dev

How do I call a button click by pressing the Enter key in Powershell

From Dev

How do I call a button click by pressing the Enter key in Powershell

From Dev

Pressing enter submits wrong button

From Dev

Pressing enter submits wrong button

From Dev

Pressing enter key submit the form?

From Dev

dynamic textbox in pressing enter key

From Dev

Simulate / emulate pressing keyboard button or mouse button in jquery

From Dev

Button to change color on focus using tab key and back to original color on pressing enter

From Dev

GWT: On pressing KEY_ENTER I want to enable button's onclick method

From Dev

Pressing 'Enter' executes Cancel button instead of Submit

From Dev

Pressing 'Enter' executes Cancel button instead of Submit

From Dev

Omit action when pressing Enter on button

From Dev

Pressing enter in text box to trigger click on a button

From Java

to call onChange event after pressing Enter key

From Dev

PrimeFaces disable submit on pressing enter key

From Dev

Pressing Enter Key to Login in WPF windows.

From Dev

Jquery focus out after pressing enter key

From Dev

a custom event for pressing the 'Enter key' in C#

From Dev

ENTER key pressing event not working dojo 1.10

From Dev

Data Submitting Twice On Pressing Enter Key

From Dev

Focus on next field on pressing enter key in Vuejs

From Dev

JVM crashes on pressing press enter key in a Textfield

From Dev

Pressing ENTER key stops the background tshark process?

From Dev

Pressing Enter Key to Login in WPF windows.

From Dev

Change NSTexfield focus by pressing Enter key

From Dev

jQuery dialog not working when pressing Enter Key

Related Related

  1. 1

    how to emulate pressing the Enter key

  2. 2

    Jquery: how to trigger click event on pressing enter key or clicking button

  3. 3

    WPF Pressing Enter Key How to Make Button look pressed

  4. 4

    How do I call a button click by pressing the Enter key in Powershell

  5. 5

    How do I call a button click by pressing the Enter key in Powershell

  6. 6

    Pressing enter submits wrong button

  7. 7

    Pressing enter submits wrong button

  8. 8

    Pressing enter key submit the form?

  9. 9

    dynamic textbox in pressing enter key

  10. 10

    Simulate / emulate pressing keyboard button or mouse button in jquery

  11. 11

    Button to change color on focus using tab key and back to original color on pressing enter

  12. 12

    GWT: On pressing KEY_ENTER I want to enable button's onclick method

  13. 13

    Pressing 'Enter' executes Cancel button instead of Submit

  14. 14

    Pressing 'Enter' executes Cancel button instead of Submit

  15. 15

    Omit action when pressing Enter on button

  16. 16

    Pressing enter in text box to trigger click on a button

  17. 17

    to call onChange event after pressing Enter key

  18. 18

    PrimeFaces disable submit on pressing enter key

  19. 19

    Pressing Enter Key to Login in WPF windows.

  20. 20

    Jquery focus out after pressing enter key

  21. 21

    a custom event for pressing the 'Enter key' in C#

  22. 22

    ENTER key pressing event not working dojo 1.10

  23. 23

    Data Submitting Twice On Pressing Enter Key

  24. 24

    Focus on next field on pressing enter key in Vuejs

  25. 25

    JVM crashes on pressing press enter key in a Textfield

  26. 26

    Pressing ENTER key stops the background tshark process?

  27. 27

    Pressing Enter Key to Login in WPF windows.

  28. 28

    Change NSTexfield focus by pressing Enter key

  29. 29

    jQuery dialog not working when pressing Enter Key

HotTag

Archive