It still doesn't work at my editors. I have 4 editors that are initialized by 2 init codes:
tinyMCE.init({
//language : "pl",
theme_advanced_toolbar_location : "top",
theme: "advanced",
mode : "exact",
elements : "textarea_el",
body_id : "textarea_el=body_id_textarea",
body_class : "textarea_el=body_class_textarea",
plugins : "emotions",
theme_advanced_buttons1 : "fontselect,fontsizeselect,bold,italic,underline,forecolor,emotions",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
width: 300,
height : 430,
init_instance_callback : "myCustomInitInstance"
});
tinyMCE.init({
//language : "pl",
theme_advanced_toolbar_location : "top",
theme: "advanced",
mode : "exact",
elements : "address_el1,address_el2,address_el3",
body_id : "address_el1=body_id_address1,address_el2=body_id_address2,address_el3=body_id_address3",
body_class : "address_el1=body_class_address,address_el2=body_class_address,address_el3=body_class_address",
plugins : "emotions",
//theme_advanced_buttons1 : "fontselect,fontsizeselect,bold,italic,underline,forecolor,backcolor,emotions",
theme_advanced_buttons1 : "fontselect,bold,italic,forecolor,emotions",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
//width: 295,
width: 300,
height : 54,
//nowrap : true,
init_instance_callback : "myCustomInitInstance"
});
So, having those, how can i set focus on each of them?