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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:36:03+00:00 2026-05-28T16:36:03+00:00

I want to add a button, with an onclick event, to the page. It

  • 0

I want to add a button, with an onclick event, to the page. It will eventually open an overlay div.

But, I can’t get even an alert running.

I’ve used a couple of techniques, like unsafeWindow, and adding the script tags to the body, but still doesn’t work.

This is the code that I’m using right now:

function main() {
    var script_source = '<script type="text/javascript">function doenwedan(){alert("hebben we gedaan!");}</script>';
    var link_knop = '<br /><br /><br /><br /><button onclick="doenwedan()" value="gaan we doen">gaan we doen</button>';
    var orginele_pagina = document.getElementById('ds_body').innerHTML;
    document.getElementById('ds_body').innerHTML =orginele_pagina + link_knop + script_source ;
}

main();

How can I get this working?
I need a technique like this, because when the overlay div is called, there will be new functions needed, so if got to inject them then…

  • 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-28T16:36:04+00:00Added an answer on May 28, 2026 at 4:36 pm

    Several things:

    1. Don’t inject JS if you don’t have to (On the Evil Overlord list next to “Don’t turn into a snake; it never helps”).
    2. Don’t futz with innerHTML if you don’t have to. It busts things and leads to the temptation of trying to regex HTML.
    3. Use DOM methods to add things, with rare exceptions.
    4. I’m not sure that a script node, created thus, will be parsed anyway.
    5. Might as well start using jQuery. It makes things simpler and more robust.

    Putting it all together, your script would become something like:

    // ==UserScript==
    // @name     _Add a button
    // @include  http://YOUR_SERVER/YOUR_PATH/*
    // @require  http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
    // ==/UserScript==
    
    function doenwedan () {
        alert ("hebben we gedaan!");
    }
    
    var orginele_pagina = $('#ds_body');
    orginele_pagina.append (
        '<br><br><br><br><button id="myButton" value="gaan we doen">gaan we doen</button>'
    );
    
    $("#myButton").click (doenwedan);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add a button to JTabbedPane's title bar (similar to the 'open
I want to add row with remove button through javascript in html div formate.
I'm creating firefox addon to add onclick event to the specific button. (input element)
I'm making my own minor mode for emacs. Now I want to add button
I want to add Excel button below the html table, that gives an Excel
I want to add a button to each row of a column of an
I have a datagrid that I want to add a button/s to at runtime.
I have a grid, which I want to add a button at the top
I want to add a click able button to a MKAnnotation as seen in
I want to add a column to a gridview which contains button control. I

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.