The below code only working in web view, but not in mweb browser
onKeyPress={(e) => {
var startPos = e.currentTarget.selectionStart;
if (e.which === 32 && startPos == 0) {
e.preventDefault();
}
}
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
The below code only working in web view, but not in mweb browser
onKeyPress={(e) => {
var startPos = e.currentTarget.selectionStart;
if (e.which === 32 && startPos == 0) {
e.preventDefault();
}
}