Thanks for quick reply. I try but not get success
I use this javascript code, please check if I am wrong anywhere
<script language="JavaScript">
function setFocus() {
document.getElementById('text').focus();
}
</script>
And this code on submit button
<input name=”user-submitted-post” type=”submit” onClick=”setFocus()” value=”<?php _e(‘Submit Post’); ?>”>
And the last code for focus on text box
<input name=”user-submitted-title” id=”text” onFocus=”setFocus()” type=”text” value=”” placeholder=”<?php _e(‘Post Title’); ?>”>
Thanks