2

I am trying to set html form input's default language to Georgian.

i.e. when user starts typing input it should be in Georgian and user should not have to switch language from keyboard.

I tried using lang="ka" attribute on almost every element but it is not working. ("ka" is html language code reference for Georgian, and I do have Georgian keyboard installed).

<!DOCTYPE html>
<html lang="ka">
  <head>
     <title></title>
     <meta charset="UTF-8">
</head>
<body lang="ka">
  <form lang="ka">
    სახელი:<br>
   <input lang="ka" type="text" name="firstname" >
   <br>
   გვარი:<br>
   <input lang="ka" type="text" name="lastname" >
  </form>
</body>
</html>
3
  • This is due to your browser.You can also follow this. Set defualt language for HTML input`s Commented Dec 3, 2015 at 10:39
  • i use chrome. will it work in firefox?? Commented Dec 3, 2015 at 10:41
  • Please use latest version of chrome. Commented Dec 3, 2015 at 10:52

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.