Hi all I have a code that works on JSFiddle but not locally with chrome I'm a bit confused..
<script type="text/javascript" src="jquery-1.12.0.min.js"> </script>
<script type="text/javascript">
$("#A").keyup(function() {
alert('this actually works');
});
</script>
....
<form action="" method="post">
<input type="text" id="A" size="22px"/>
<input type="text" id="B" size="22px"/>
</form>
Is it a problem of JQuery's version ?