Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

178
Views
iPad korean keyboard doesn't raise the same DOMEvents as other OSs korean keybords

When using textarea in iPads, typing with korean keyboard doesn't raise any composition events. It raises these events in any other places (all browsers in both mac and windows).

For example:

function logFunc(str){
    return function(){console.log(str);};
}
var x = document.getElementById("abc")
x.addEventListener("compositionstart",logFunc("compStart"));
x.addEventListener("compositionend",logFunc("compEnd"));
x.addEventListener("blur",logFunc("blur"))
x.addEventListener("focus",logFunc("focus"))

var b = document.getElementById("btn");

b.addEventListener("focus",logFunc("Btn-focus"))
b.addEventListener("click",logFunc("Btn-Click"))
<button id="btn">
Click
</button>
<div>
</div>
<textarea id="abc"></textarea>
<textarea>
</textarea>

With the repro:

  1. press 'ㅅ'
  2. click

In chrome (MAC) the results of the console are:

"focus" "compStart" "compEnd" "blur" "Btn-focus" "Btn-Click"

In chrome iPad the results are:

"focus" "blur" "Btn-Click"

I'm searching why the iPad doesn't raise these events, and if there is any way to make them to be raised.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!