What's the difference between innerHMTL and outerHTML ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gimme_this_gimme_that@yahoo.com

    What's the difference between innerHMTL and outerHTML ?

    Thanks.
  • Stevo

    #2
    Re: What's the difference between innerHMTL and outerHTML ?

    gimme_this_gimm e_that@yahoo.co m wrote:
    Thanks.
    Why not just alert the inner and outer HTML of some element and you'll see.

    Comment

    • Xu, Qian

      #3
      Re: What's the difference between innerHMTL and outerHTML ?

      gimme_this_gimm e_that@yahoo.co m wrote:
      Thanks.
      <p id="explain">He llo</p>


      innerHTML of element "explain" == Hello
      outerHTML of element "explain" == <p id="explain">He llo</p>


      --
      Xu, Qian (stanleyxu)

      Comment

      • gimme_this_gimme_that@yahoo.com

        #4
        Re: What's the difference between innerHMTL and outerHTML ?

        Thanks Qian

        Comment

        Working...