Expert Developer JavaScript Question:
Why it is not advised to use innerHTML in JavaScript?
Answer:
innerHTML content is refreshed every time and thus is slower. There is no scope for validation in innerHTML and, therefore, it is easier to insert rouge code in the document and, thus, make the web page unstable.
Previous Question | Next Question |
What Boolean operators can be used in JavaScript? | How do I use JavaScript to password-protect my Web site? |