Search Results

2
votes

What is the difference between “lang” and “type” attributes in a script tag?

<script language=""> can be used for serving VBScript and different versions of Javascript. Unless you need a specific version of Javascript, don't use the language attribut …
1
vote

Is it reasonable to assume my visitors have javascript enabled?

Never ever assume Javascript for form validation, as your question implies. Someone will eventually realise this and turn Javascript off. Instead, code the app in fairly regular html manner …