When adding new pages/content whatever, it would make life that little bit easier if some "onkeyup" or whatever javascript function was put on the title field that would duplicate onto the menu text field in order to often avoid repetition?
ie:
Code: Select all
duplicateText(){
var storedText;
storedText = this.value;
form.menutextfieldname.value = storedText;
}