Why am i receiving this jsfiddle error, document.write can be a form of eval

Note that this is a warning only – but a good one that should be respected. It is actually being generated by a checker called JSLint – and a good read for the reasoning of this warning is available at http://www.jameswiseman.com/blog/2011/03/31/jslint-messages-document-write-can-be-a-form-of-eval/. Basically, the foundation of this is that “eval is evil” – and that document.write … Read more