html type="submit" doesn't work -


i following tutorial, , have simple code

<form>  <input name=“q”>  <input type=“submit”> </form> 

, should show button, appears text box. weird thing is, copy paste same text textedit(cover original ), , works fine button. however, when try delete letter( such t in sumbit) , retype it, won't work again.

don't use smart quotes when writing html. won't interpreted correctly goes default input type of of text.

change

<input name=“q”> <input type=“submit”> 

to

<input name="q"> <input type="submit"> 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -