/! jQuery UI Virtual Keyboard v1.26.4 *//
When you press tab button from input which has instance of keyboard, the focus get to next control, that is working good, but in case the next control is drop down, it ignores that dropdown, and navigate to next button or input or textarea or a tag control.
I found that fix by changing code at line # 1476 all = $('button, input, textarea, a')
to all = $('button, input, textarea, select, a')
/! jQuery UI Virtual Keyboard v1.26.4 *// When you press tab button from input which has instance of keyboard, the focus get to next control, that is working good, but in case the next control is drop down, it ignores that dropdown, and navigate to next button or input or textarea or a tag control. I found that fix by changing code at line # 1476
all = $('button, input, textarea, a')
toall = $('button, input, textarea, select, a')
Is it good fix?