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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T21:30:52+00:00 2026-05-28T21:30:52+00:00

I have a div: <div id=test>Text to be removed</div> How can I add this

  • 0

I have a div:

<div id="test">Text to be removed</div>

How can I add this complete form into the div, using JUST code (starting from nothing, meaning the form element does not exist anywhere in the page):

<form name="input" action="html_form_action.asp" method="get">
Edit: <input type="text" name="tex" value="Some text here to edit"/>
<input type="submit" value="Submit" />
</form> 
  • 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-28T21:30:52+00:00Added an answer on May 28, 2026 at 9:30 pm

    Well how about…

    $('#test').html('<form name="input" action="html_form_action.asp" method="get">' +
                        'Edit: <input type="text" name="tex" value="Some text here to edit"/>' +
                        '<input type="submit" value="Submit" />' +
                     '</form>');
    

    or…

    $('<form>',{name:'input',action:"html_form_action.asp",method:'get'})
        .append('Edit: ')
        .append($('<input>',{type:'text',name:'tex',value:'Some text here to edit'}))
        .append($('<input>',{type:'submit',value:'Submit'}))
        .appendTo($('#test').empty());
    

    Or with the native API…

    var test_div = document.getElementById('test');
    
    test_div.innerHTML = '';
    
    var form = test_div.appendChild(document.createElement('form'));
    
    form.name = 'input';
    form.action = 'html_form_action.asp';
    form.method = 'get';
    
    form.appendChild(document.createTextNode('Edit: '));
    
    var input = form.appendChild(document.createElement('input'));
    input.type = 'text';
    input.name = 'tex';
    input.value = 'Some text here to edit';
    
    
    input = form.appendChild(document.createElement('input'));
    input.type = 'submit';
    input.value = 'Submit';
    

    Or with the native API, and a helper function…

    function createAndInsert(parent, tag, props, clear_first) {
       var el;
    
        if(typeof parent === 'string')
            parent = document.getElementById(parent);
    
        if(clear_first)
            parent.innerHTML = '';
    
        if(tag === ':text')
            el = parent.appendChild(document.createTextNode(props));
        else {
            el = parent.appendChild(document.createElement(tag));
    
            for(var n in props)
                el[n] = props[n];
        }
        return el;
    }
    

    Then…

    var form = createAndInsert('test', 'form', {
       name: 'input',
       action: 'html_form_action.asp',
       method: 'get'
    }, true);
    
    createAndInsert(form, ':text', 'Edit: ');
    
    createAndInsert(form, 'input', {type:'text',name:'tex',value:'Some text here to edit'});
    
    createAndInsert(form, 'input', {type:'submit',value:'Submit'});
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: <html> <head> <style type=text/css> #test img {vertical-align: middle;} div#test
I have some basic PHP code: $raceramps56[short] = My Test Product; $leftMenu = '<div
Is this possible? you can se my problem here: http://granjalaaurora.com/test/test-jscrollpane.html I have this structure:
I have a test setup where the thumbnail div fades into another div, there's
I have a div set up something like this: <div id=test> <p>Hello</p> <p style=display:
Suppose we have the following code: <div id=test style=width:200px; height: 200px; overflow: hidden;> <p>Lorem
I have a div with text inside: <div id=test>Some text here to edit</div> When
I have a div called test and mvc action in the client controller The
http://removed.com/jquery/test.html# I have three problems that I need help with. 1 ) When you
I have tried this several different ways but can't seem to figure out how

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.