Hello
Why do I receive this message? Uncaught TypeError: Object [object Object] has no method ‘live’
<html>
<head>
<script type='text/javascript' src='js/libs/jquery-1.9.0/jquery.min.js'></script>
<script>
$( function() {
// element doesn't exist yet, but we can create handler
// anyways
$( "#anchor" ).live( "click", function( event ) {
console.log( "I have a handler" );
} );
$( document ).append( "<a id='anchor'> I go no where </a>" );
} );
</script>
</head>
<body>
</body>
</html>
Thank you in advance!