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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T21:26:09+00:00 2026-06-16T21:26:09+00:00

I have a textarea where I use javascript to check if there’s something writen

  • 0

I have a textarea where I use javascript to check if there’s something writen on it:

if (!editorInstance.document.getBody().getChild(0).getText()) {
    do some action
}

It works fine for firefox, but in IE9 I get this error telling it’s a null or undefined object (so IE doesnt check my condition).
so I tried:

var hasText = editorInstance.document.getBody().getChild(0).getText();
if (typeof hasText === 'undefined') {
    do some action
}

The problem is that it still stops in the first line ( var hasText = edit... ), because the editorInstance.document.getBody().getChild(0).getText() returns null or undefined

EDIT

when I do editorInstance.document.getBody().getChild(0).getText(), I get all text entered in the textarea, but when there’s no text entered (I check it to validate this field), this code returns nothing, this is why the hasText variable is not working the way I expected.

Any idea about how can I solve it?

  • 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-06-16T21:26:11+00:00Added an answer on June 16, 2026 at 9:26 pm

    You need to check for the presence of each variable and function result that you refer to.

    var firstChild = editorInstance && editorInstance.document && editorInstance.document.getBody() && editorInstance.document.getBody().getChild(0);
    if (!firstChild || firstChild.getText() === '') {
        // do some action
    }
    

    && is Javascript’s logical AND operator. It’s very handy for cases like this, when you want to fetch an object’s value, but the object itself might be null or undefined.

    Consider the following statement:

    var doc = editorInstance && editorInstance.document;
    

    It means the same as

    var doc;
    if (editorInstance) {
        doc = editorInstance.document;
    } else {
        doc = editorInstance;
    }
    

    but it’s shorter. This statement will not error out if editorInstance is null.

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

Sidebar

Related Questions

I am trying to use a textarea form entry which I have some javascript
I have textarea in my site(link shortening site) i want to user enter some
I have the following Javascript to copy the user's textarea input in this iPhone
I have a textarea. I am trying to check that it contains atleast 3
I've got a couple of cases where I use a textarea to display some
I am trying to use javascript to make text bold. I have searched the
I have a javascript character counter that I use inside of a text area.
I have a textarea which I'm using JavaScript to retrieve the value of and
I have a challenge to use existing JavaScript with my HTML. My HTML are
I have a problem with the use of the javascript removeChild function. Here's my

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.