I want to prevent input focus onclick and focus inputs on double click.
Something like....
$('input').click(function) {
$(this)preventFocus();
});
$('input').dblclick(function) {
$(this)focus();
});
Or maybe I should use an if statement?