Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4615270
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:48:58+00:00 2026-05-22T01:48:58+00:00

I want to bind a function to all the textarea and want to run

  • 0

I want to bind a function to all the textarea and want to run it whenever a key gets pressed.

function fx(docid)
{
  $('#'+docid).val=encodeURIComponent($('#'+docid).val());
  //document.getElementByID('docid').value = encodeURIComponent(document.getElementByID('docid').value);
}

Note: the page will have different textarea, I want a single function to do the same job for all the textarea. I don’t want to hard code the event with the textarea <textarea onkeydown="..." />

Edit
I want to trigger the function on multiple events, thats on keypress, keydown,click

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:48:58+00:00Added an answer on May 22, 2026 at 1:48 am

    Just pass in textarea as the selector. If you want it to trigger for text inputs as well then use textarea, input[type="text"] for the selector:

    var fxHandler = function (e) {
        var yourDocId;
        // code to find/set yourDocId
        fx( yourDocId );
    };
    
    // bind to whatever events you need
    $('textarea').bind('keydown', fxHandler)
                 .bind('keyup', fxHandler)
                 .bind('click', fxHandler);
    

    Of course, if you run your function as written it will double, triply, etc encode the value, so you’ll need to write a function that leaves %## values alone.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to bind a function to all links with a class called 'click'
I playing around with a function that I want to bind to all the
Using jQuery I want to bind an existing function to a button. I've been
I want to bind a click event with the element: $('a').click(function(){ btn_submit_pressed=false; }); Now,
The documentation says to use: $(input[type='checkbox']).bind( change, function(event, ui) { But I want to
I've got a snippet I want to bind to a key: (define-key (lisp-interaction-mode-map) (kdb
I want to clear all input and textarea fields in a form. It works
let say i want to bind all items that are under #mainDiv .user Except
I want to be able to do this $('.class').bind({'click':'function(){ ... }'}); // note that
I have below code in Jquery $(document).ready(function() { // bind to cells with an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.