I'm using this Library to create a virtual keyboard on input elements
The problem is similar to this question.
I need to apply it globally on all input type fields as opposed to being based off the elements id or class. i.e
$('input').keyboard
showTyping: true
delay: 250
tabNavigation: true
autoAccept: true
The catch is that this will only get bound if a querystring (i.e 'keyboard=true') is present.
Going through all the views and applying this will work (but certainly doesn't seem optimal).