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

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -