I want to focus a textbox when web page is loaded. These codes are executed on the PC browser(Google chrome,internet explorer etc.) But if you are entering on the Ipad browser, it does not work. What is the problem ? this subject is very important for me. Please..
<asp:TextBox ID="txt_arama2" runat="server" Width="60%"></asp:TextBox>
window.onload = function() {
document.getElementById("txt_arama2").focus();
};