so I have this...
< input type="checkbox" id="chvre" value="1"/>
Here, it makes sense that the id value is in quotes, as it would be a string identifier. But what about the type value? Isn't checkbox a type, like String and Boolean? Why do I keep seeing these supposedly non-literals between double quotes? Is it bad practice? What should I aim at getting used to doing?
Furthermore, what if I want the value of value (that "1") to be a number instead of being treated as a string? If I read that value in javascript, var val = document.getElementById("chvre").value I have to use the parseInt() thingy.
So, what's the right way of doing these things? Do I just double quote everything? Should I not?