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 6877909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:39:29+00:00 2026-05-27T04:39:29+00:00

So I have a .live() click event on a textarea which allows user to

  • 0

So I have a .live() click event on a textarea which allows user to leave comments.
I also have this Jquery function to clear the default text of ‘Leave a comment…’ and unbind the event as so if the user clicks on the textarea again their comment is not erased.

Here is the function.

$('#comment-textarea').live('click', function(e) {
        $(this).text('');
        $(this).unbind(e);
});

However, when the user submits the commment, the default text is submitted even though it is cleared and they enter their own text. I thought it was the unbind event causing this, but I also wrote it like this.

$('#comment-textarea').live('click', function(e) {
        if($(this).text() == 'Leave a comment') {
            $(this).text('');
        }                            
});

But it still submits the initial text. Has anyone ran into this before?

***EDIT

So 100% for sure the jquery events are not binding to element that are not within screen view. If I scroll down in the div, anything below the bottom of the div and out of view do nothing at all.

  • 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-27T04:39:30+00:00Added an answer on May 27, 2026 at 4:39 am

    Because you should work with val(), not text(). <textarea> is an HTML form control, and for form controls, you use val() function to get their current value, or val(x) function to set their current value.

    $('#comment-textarea').live('click', function(e) {
            $(this).val('');
            $(this).unbind(e);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this js code: $(#startSearch).live(click, function(event) { $(input:checkbox[name='searchId']:checked).each(function() { var searchId = $(this).val();
I am currently doing the following with some jQuery, $(.template-choice).live(click, function(event){$.post($(this).attr('href'), function(data) { console.log(data);
I have some functionality which is bound to a click event: $('.addButton').live('click', function(){ //stuff
I have the following bit of code, simply: $(function() { $('a.add-photos-link').live('click', function(e) { $(this).colorbox({
I have a jquery event binding using .live that adds fancybox to the click
I have a problem of jQuery's live() function not working with click, mousedown but
I have the following script: $('#element_1').live('click', function() { function_1(this) }); function function_1(that) { that
I have a div containing a href. The div has a jQuery live click
I have a menu with a (links) tags. In Jquery I'm handling click event
I have a little problem with my click event. I have an AJAX function

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.