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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:47:40+00:00 2026-05-17T15:47:40+00:00

Is there an alternative to innerHTML? – issue on Blackberry browser Blackberry 4.6 browser

  • 0

Is there an alternative to innerHTML? – issue on Blackberry browser

Blackberry 4.6 browser does not seem to use innerHTML properly.
Instead of replacing contents, it appends contents!

function load_activities(){
    x$('#dummy').xhr('program.php',{
    method:'post', 
    data:   'action=list'.              
    callback: function(){
            document.getElementById("status2").innerHTML = this.responseText;
        }       
    });
  • 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-17T15:47:40+00:00Added an answer on May 17, 2026 at 3:47 pm

    How about cloning the node without children and then adding the new content?

    callback: function () {
        var status2 = document.getElementById("status2");
        var copy = status2.cloneNode(false); // false indicates to not copy children
        copy.innerHTML = this.responseText;
        if (status2.nextSibling) {  // put the copy in the same place as the existing node
            var refchild = status2.nextSibling;
            status2.parentNode.removeChild(status2);
            refchild.parentNode.insertBefore(copy, refchild);
        }
        else { // existing node is the last child, copy can be appended to the end of the list
            var parent = status2.parentNode;
            parent.removeChild(status2);
            parent.appendChild(copy);
        }
    }    
    

    I have no way to test this, so I don’t know for sure that cloneNode will work as expected and only copy the tags and attributes. Hope it helps.

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

Sidebar

Related Questions

how can I use ASP.NET session in WCF? or is there any alternative way
document.getElementById(ID).focus() not work in Google Chrome. Is there any alternative? Thank you.
is there an alternative for mysql_insert_id() php function for PostgreSQL? Most of the frameworks
Is there any alternative image manipulation library for .net? I would prefer something that
Is there any alternative for WPF (windows presentation foundation) in python? http://msdn.microsoft.com/en-us/library/aa970268.aspx#Programming_with_WPF
Is there an alternative to history.go(-1) for FireFox and Safari. Any Help would be
Is there an alternative ActionScript 3 lightweight framework out there similar to Flex, but
Is there any alternative to Axis2? Or the way to make it work (different
Is there an alternative version of std::find_if that returns an iterator over all found
Is there an alternative in OpenSSL to SSL_set_connect_state()/SSL_set_accept_state() for X.509 certificate based authentication? The

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.