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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:31:18+00:00 2026-06-02T06:31:18+00:00

I can understand basic javascript and jquery but I’m having a hard time understanding

  • 0

I can understand basic javascript and jquery but I’m having a hard time understanding how to allow a user to see the source code of an element for example.

If I have an element on a webpage like this

`<p>Hi I'm an element</p>`

every body knows it will be displayed as this

Hi I'm an element

but I want a user to see this in its source code form

`<p>Hi I'm an element</p>`

How on earth is this done??

  • 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-02T06:31:19+00:00Added an answer on June 2, 2026 at 6:31 am

    The basic idea is to get the HTML of an element, then show it somewhere as plain-text. We can use .html() to get the HTML and then .text() to output the same HTML as plain-text:

    //on the click of a link
    ​$('a')​.on('click', function () {
    
        //append a container with the plain-text HTML of an element
        $('body').append($('<div />').text($('form').html()));
    });​​
    

    Here is the demo: http://jsfiddle.net/YbJfs/

    Note that this does not get the actual <form> tag, but you could place the form in a container, select the container, and then use the .html() if that container and you’ll have the <form> tag as well.

    Also, if you want to add the HTML to a form input or text-area, you can use .val() rather than .text().

    Here is a demo: http://jsfiddle.net/YbJfs/1/

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

Sidebar

Related Questions

For the life of my I can't understand how the basic paperclip example works.
Disclaimer: I'm not a c++ developer, I can only do basic things. (I understand
I can understand the use for one level of namespaces. But 3 levels of
I can understand wanting to avoid having to use a cursor due to the
I can understand the difference between a signed char and an unsigned one. But
So far I can understand HTML.ActionLink and URL.RouteURL but still trying to absorb where
I understand that the basic for...of syntax in JavaScript looks like this: for (let
I'm learning C++ from book. I think I understand basic concept but the book
I can understand that imposing a minimum length on passwords makes a lot of
I can understand the string.Join( ) var stringies1 =new [] {Blood, is, Thicker, Than,

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.