[eluser]01010011[/eluser]
Thanks for your reply eoinmcg. I will try it.
[quote author="eoinmcg" date="1271559711"]with jquery:
Code:
// for the first textfield on the doc
$(document).ready(function(){
$('textarea:first').focus();
});
Code:
// select textfield by id
$(document).ready(function(){
$('textarea#id_name:first').focus();
});
[/quote]