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

The Archive Base Latest Questions

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

I have an html document <html> <head></head> <body> <form> <input type=text value= /> </form>

  • 0

I have an html document

<html>
<head></head>
<body>
<form>
<input type="text" value="" />
</form>
<input type="button" id="doit" value="do it"/>
    <!-- jQuery -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">
        </script>            
        <script type="text/javascript">
        $(document).ready(function() {
            $("#doit").click(function(){
            var dom = document.documentElement.innerHTML;
            alert(dom);
            });
        });
        </script>
</body>
</html>

if I edit the text field its value is still the original blank value in the alert…WHY? and how do I see the actual DOM in a string?

  • 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-23T21:16:31+00:00Added an answer on May 23, 2026 at 9:16 pm

    You’d need to set each attribute explicitly with the current value: http://jsfiddle.net/GW8eU/.

    $("#doit").click(function(){
        $('*').each(function() {
            var $this = $(this);
            for(var i = 0; i < this.attributes.length; i++) {
                try {
                    var t = this.attributes[i];
                    $this.attr(t.name, $this.prop(t.name));
                } catch(e) {}
            };
        });
        var dom = document.documentElement.innerHTML;
        alert(dom);
    });
    

    It’s rather dirty and I do not see a real rationale behind outputting the DOM to a string, but it seems to answer your question.

    One of the reasons it’s dirty is that the try block is essential, because otherwise you’d be setting the type attribute of an input which is immutable. I’m pretty certain this won’t work with other special attributes either, but for the value of an input it works fine.

    Therefore I would still like to know what’s the reason behind wanting the DOM as a string; probably there is a more elegant solution.

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

Sidebar

Related Questions

I have done something like this. <html> <head> <script type=text/javascript> <!-- function toggleTB(what){ if(what.checked){document.theForm.theTB.disabled=1}
I have an html form. When you click the button, a javascript function adds
i Have this code that select all checkboxes: <html> <head> <script language=javascript> function checkAll(){
I have a code like this. <html> <head> <title>Captcha With Refresh Feature</title> <script src=jquery.js
I have a VM file with the following codes: UPDATED: <html> <head> <title>Input Form</title>
I have the following Javascript code: function checkIfValid(){ var form = document.createuserform; if(form.fName.value ==
I have the following form: <form action= method=get> <input name=form1 type=radio onclick=document.forms[0].testbox.value='0.00'; /> <input
I want to have a form with an input text field and be able
I have a simple HTML-page with a UTF-8 encoded link. <html> <head> <meta http-equiv="content-type"
I have an HTML document that is using to embed a control. In some

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.