In tutorials I\'ve learnt to use document.write
. Now I understand that by many this is frowned upon. I\'ve tried print()
, but then it literally sen
The question depends on what you are actually trying to do.
Usually, instead of doing document.write
you can use someElement.innerHTML
or better, document.createElement
with an someElement.appendChild
.
You can also consider using a library like jQuery and using the modification functions in there: http://api.jquery.com/category/manipulation/