See bellow code Here is HTML
<asp:TextBox ID="txtInTime" runat="server" CssClass="TextBox" Width="60px"
OnClick="fnFocus(this.id)" ></asp:TextBox>
here is javascript
function fnFocus(id) {
document.getElementById(id).focus();
}
Above code working in all browser expect chrome... I want textbox click to focus of textbox at first position..In chrome not comming in first position of character.. please help... Any Suggestion...??