Hello,
so often the users forget to fill in the Title of a page. It would be of great help, if after Add -> Page, the cursor would be placed in the title field and not in the WYSIWG-content-field (new editor).
I've been trying some "jQuery magic", but it's not working.
What's wrong?
I tried:
<script>
jQuery(document).ready(function() {
// on add -> page, set focus on title, not on content
jQuery("#content-title").focus();
jQuery("#input:text:visible:first").focus();
});
</script>
Thanks for any suggestion,
Sven