Outer Html code example

Outer Html code Exampal

<div id="my">
    This is best for me
</div>
<input type="button" value="click this" onclick="my()">


<script>
    function my()
    {
        //alert("hello");
        var el = document.getElementById("my");
        alert(el.outerHTML);
    }
</script>

OUTPUT :-

This is best for me

Comments