Remove webkit border on input on focus , for jQuery plugin : jqTransform

Examples

The following image shows a text box which is first not focussed and then focussed in the Chrome and Firefox web browsers. The highlight around the box is quite subtle in Firefox and extremely clear in Chrome; it’s much more obvious in Chrome which field has the focus.

input field focus in chrome and firefox

Preventing the focus highlight

.noFocus:focus {
    outline: none;
}