How to fix this search box error in html?
I got this html search box error, when clicked on keyboard's magnifier button - Uncaught ReferenceError: start is not defined Uncaught ReferenceError: onHasParentDirectory is not defined Uncaught ReferenceError: addRow is not defined Uncaught ReferenceError: addRow is not defined Uncaught ReferenceError: addRow is not defined Here's my search box code - HTML - <form> Search - <input type="text" name="search" placeholder=" type here..."> </form> CSS - input[type=text] { width: 130px; -webkit-transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out; } /* When the input fields gets focus, changes its width to 80% */ input[type=text]:focus { width: 80%; } PLEASE HELP ME FIX THIS ERROR!!!