I have a problem with an html page
here a simplified version of the page
<html>
    <head>
        <script type="text/javascript">
            function maxLength()
            {
                console.log('maxLength');
            }
        </script>
    </head>
    <body>
        <input type"text" onblur="maxLength()">
    </body>
</html>
on onblur event I receive this error
Uncaught TypeError: maxLength is not a function
but if i call the function from console it works without errors and print 'maxLength'
Why?
 
     
    