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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:08:25+00:00 2026-05-19T22:08:25+00:00

I am on blackberry9300 (5.0.0.832). And I am trying to add a javascript element

  • 0

I am on blackberry9300 (5.0.0.832). And I am trying to add a javascript element programmatically.

var script=document.createElement('script');
script.src='file.js';
script.type='text/javascript';
script.onload=function(){alert('loaded');}; //Nothing happens
script.addEventListener('load', function(){alert('loaded');}, false); //Nothing happens
script.addEventListener('readystatechange', function(){alert('state changed');}, false); //Nothing happens
script.onreadystatechange=function(){alert('state changed')}; //Nothing happens
document.getElementsByTagName('head').item(0).appendChild(script);

Is there any way to workaround this issue?

  • 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-19T22:08:26+00:00Added an answer on May 19, 2026 at 10:08 pm

    blackberry browser on older os (< 6.0) doesn’t fire onload events or doesn’t change readyState of script. So I need to poll if js file is loaded successfully or not. Here is that function if anybody is interested.

    function loadScript(path,callback,chkvar){
      var a=document.createElement('script');
      a.src=path;
      a.type='text/javascript';
      a.onreadystatechange=function(){
        if(this.readyState=='complete'||this.readyState=='loaded')
          callback();
      };
      a.onload=callback;
      if(a.hasOwnProperty('onload')==false)
        var e=setInterval(function(){
          if(eval(chkvar)){  //chkvar will only be available after js file is loaded.
            clearInterval(e);
            callback();
          }
        },50);
      }
      document.getElementsByTagName('head').item(0).appendChild(a);
    }

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

Sidebar

Related Questions

I am implementing an application for BlackBerry 9300, 9700 and storm. In this application
I have an Array which looks like this. [{title=>ga:browser=Internet Explorer, dimensions=>[{:browser=>Internet Explorer}], metrics=>[{:pageviews=>2047}], id=>http://www.google.com/analytics/feeds/data?ids=ga:12316&ga:browser=Internet%20Explorer&start-date=2010-02-27&end-date=2011-02-27,
I'm working on some logging functionality for a website, and I need to update
Is there a way to detect BlackBerry Model in asp.net, I have made some
I have followed book until chapter 5 finished and it's working OK in 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.