document.write and innerhtml both the functions are useful to adding the dynamic content in in Document.
Both function are many times used by developer in javascript functions, Ajax calls, Web services and many JS libraries.
How to use document.write and innerhtml
So We need understand the similarities and differences and limitation about document.write and innerhtml.
First whenever and where you calls document.write function that more important.
Here I am going to show you how to use the document.write first.
01 | <script type= "text/javascript" > |
03 | var hello_world = function () { |
04 | document.write( 'Wordpressapi is good website' ); |
06 | var mytext = "Wordpressapi is best website" ; |
07 | document.write(mytext); |
Using above code you can print or execute the so much HTML content in DOM.
Here I am going to show you how to use the innerHTML in DOM.
1 | <script type= "text/javascript" > |
2 | document.getElementById( 'sample_Div' ).innerHTML= "Wordpressapi is good website" ; |
Note: In your document “sample_Div” id with div need to be present.
put following code in your document.
Loading iframe using innerhtml is the best techniqe and solution for web services and cross domain calls.
document.getElementById('sample_Div').innerHTML = "<iframe src='http://images.purabtech.in/'></iframe>";
Both the techniques are stand for as per situation and use
How to use document.write and innerhtml