I've this code:
In the head:
$(document).ready(function() {
$("#mostrarPlay").click(function(){
alert('Hello');
});
});
and in the body
<a class="btn" id='mostrarPlay' href='#'>Play</a>
It Works when pulse the Run icon in Brackets Editor, but when use Google Chrome, does not work.
Any idea?
Best Regards