Uncaught TypeError: Object [object Object] has no method 'live'

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!

http://api.jquery.com/live/

“As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers.”

This might help, too: Understanding Event Delegation