To be able to see output from console.log()
in JSFiddle, go to External Resources on the left-side panel and add the following link for Firebug:
https://getfirebug.com/firebug-lite-debug.js
I have a template for this purpose; here is the code I use:
<pre id="output"></pre>
function out()
{
var args = Array.prototype.slice.call(arguments, 0);
document.getElementById('output').innerHTML += args.join(" ") + "\n";
}
out("Hello world!");
out("Your lottery numbers are:", Math.random(), 999, Math.PI);
out("Today is", new Date());
Try:
document.getElementById('element').innerHTML = ...;
Fiddle: http://jsfiddle.net/HKhw8/
Might not do what you do, but you can type
console.log(string)
And it will print the string into the console of your browser. In chrome push CTRL + SHIFT + J to open the console.
You can do this --->
http://jsfiddle.net/chY5y/
$('body').append(yourVariable);
Now jsfiddle can do it from the scratch. Just go to Javascrpt --> Frameworks & extensions --> Jquery(edge) and check Firebug lite checkbox
document.body.innerHTML = "Your data";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With