Element types?

Can be anything, so <div id=”, <span id=”, <p id=”, etc

N.B. You need to place the <script> after the HTML element, or call it within say window.onload = function() (the div or whatever tag you’ve used must be before the javascript on the page)

In your html
<div id="my_target_div"></div>

To manipulate text within a block of text you could you span instead of div

In your javascript – Referencing by ID Name
document.getElementById('MyTargetIdName').innerHTML = "<p>Hello</p>";

//or

<script>document.getElementById('MyTargetIdName').innerHTML = "<p>Hello</p>";</script>
In your javascript – Referencing by Class Name
document.getElementsByClassName('MyTargetClassName')[0].style.visibility = "visible" ;
//When you getElementsByClassName an array is retutrned, because there can be more than one element using the same class.
If using jquery

$("#my_target_div").html("<p>Hello</p>");

Note that this will overwrite if you already have content between the div tags

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *