Provai
$(":input:not(input[type=button],input[type=submit],button):visible:first")
ma non trova niente.
Qual è il mio errore?
UPD: lo eseguo su $ (document) .load ()
<script type="text/javascript">
$(window).load(function () {
var aspForm = $("form#aspnetForm");
var firstInput = $(":input:not(input[type=button],input[type=submit],button):visible:first", aspForm);
firstInput.focus();
});
</script>
e nel debug posso vedere che firstInput è vuoto.
UPD2: sono nella pagina ASP.NET in esecuzione su Sharepoint.
Finora ho scoperto che per alcuni elementi li trova (per quelli fissi) e per altri no. :(