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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:54:51+00:00 2026-06-12T01:54:51+00:00

I am attempting to insert an input button into an HTML table using .innerHTML

  • 0

I am attempting to insert an input button into an HTML table using .innerHTML in the associated Javascript function.

Whenever I use the same JS, but replace the “select” with other HTML, it works perfectly fine. It is only < input type=”button” /> and < button > that do not work.

The problem appears in at least IE, Firefox, and Chrome. Chrome returns an “Unexpected Identifier” error.

The abbreviated code (NOT the original):

function newrow() {
    table = document.getElementById("Table");
    row = table.insertRow(1);
    cell = row.insertCell(0);
    cell.innerHTML = "<input id="Button" type="button" value="ClickHere" />";
};

I have tried replacing the HTML with formatted text (“< b > Text < / b >”) and links, and both display correctly.

I have also created the object outside of the script, and this does work, but seems unnecessary:

<input id="Button" type="button" value="ClickHere" />

<script type="text/javascript">

function newrow() {
    table = document.getElementById("Table");
    button = document.getElementById("Button");
    row = table.insertRow(1);
    cell = row.insertCell(0);
    cell.innerHTML = button;
};

This works, but is ungainly and complicates any “getindex”s I use.

Any help would be appreciated!

  • 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-12T01:54:52+00:00Added an answer on June 12, 2026 at 1:54 am

    An “Unexpected Identifier” error would be triggered by this line:

    cell.innerHTML = "<input id="Button" type="button" value="ClickHere" />";
    

    The problem is your quotes. The JavaScript interpreter is getting confused with the quotes used to represent strings in JavaScript and the quotes used inside HTML. You need to either escape the quotes within the string, or use single quotes for one of the purposes.

    Single quotes would work:

    cell.innerHTML = '<input id="Button" type="button" value="ClickHere" />';
    

    Alternatively, escaping the quotes would work:

    cell.innerHTML = "<input id=\"Button\" type=\"button\" value=\"ClickHere\" />";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am attempting to insert data into a table that contains a lot of
I'm attempting to insert some integers into a Postgres table with the following somewhat
I am attempting to insert a record in an Oracle table with a Function,
Using the following (incomplete) code, I am attempting to insert 10 strings into a
Attempting to insert an escape character into a table results in a warning. For
I am attempting to insert a copy of a row from one table into
I am attempting to insert a row manually into my SQL Server data table.
I have been attempting to insert a VLookup formula into a column using VBA.
I am attempting to insert a new record into a table that I know
I've a MySQL table that has a UTF-8 charset and upon attempting to insert

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.