Posts

Showing posts from June, 2012

Text box focusing in safari and Chrome browsers

Normally, cursor focusing(focus) is not working in chrome and safari browsers,so add the below codings in client side. function CurFocus() { $('.txtEmail').focus(); } function pageLoad() { setTimeout(CurFocus(),3000); } window.onload = pageLoad;