Does anyone know why this isn't working. It will always print 'unchecked'.
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function msg(x) { if($(x).attr('checked')){ alert('checked!!'); } else{ alert('unchecked'); } } </script> </head> <body> <form> <input type="checkbox" id="fname2" onClick="msg(this.id)" /><br/> </form> </body> </html>