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

  • Home
  • SEARCH
  • 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 5967101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T19:53:44+00:00 2026-05-22T19:53:44+00:00

The problem now is that if I add some DOM elements I must put

  • 0

The problem now is that if I add some DOM elements I must put all JS inside tags creating huge mess in code for example:

<div onclick='//js monstrous oneliner with function declarations and so on..
              //that must be repeated many times multipcating the whole mess..
  '>
 Here some pure html thing.
</div>

So can I add my custom JS file into rendered document in the same way as I’m able to add DOM elements ?

  • 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-22T19:53:45+00:00Added an answer on May 22, 2026 at 7:53 pm

    You can inject a JavaScript file from your extension into the page. Then, the onclick handler can refer to that directly.

    Assume you have a script in your extension:

    // myfile.js
    function hello() {
      alert('hello world');
    }
    

    In your content script, make the script tag:

    var script = document.createElement('script');
    script.src = chrome.extension.getURL('/myfile.js');
    

    Now, you can write your HTML like this:

    <div onclick="hello">…</div>
    

    Note that because the content script doesn’t run in the same JavaScript context as the page, doing this won’t work from your content extension.

    var div = document.createElement('div');
    div.onclick = someFuncInMyExtension;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Visual Studio 2010 with some add-ins and extensions. The problem is now
I am trying to add some administration scripts to a Zend Framework project, that
I have a sorting/grouping issue that I'm hoping somebody could add some insight on.
I made a remote app for iPhone and now want to add some gestures
This problem crops up every now and then at work. Our build machine can
This problem has been kicking my butt for a few days now. I have
I am now designing an SNMP library. The problem is caused by a special
So the transparent background problem is solved. Now, every time I show the form
This originally was a problem I ran into at work, but is now something
I'm matching identifiers, but now I have a problem: my identifiers are allowed to

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.