Sorry if this is incredibly obvious, but I have no idea why this isn\'t working.
I\'m trying to create a jsFiddle. However, I don\'t seem to be able to attach any of the javscript to any of the elements. For example, onclick is not calling my js function.
It doesn\'t get any simpler than this fiddle. I copy-pasted it from the W3 editor where it works just fine - click the button, get alert!
<button onclick=\"myFunction()\">Click me</button>
function myFunction() {alert(\"sss\");}
http://jsfiddle.net/tpip/NYkQN/2/
What am I missing here??